A370305 Numbers k such that the distance from exp(k) to the closest average of two consecutive primes is less than 1.
1, 3, 16, 61, 74, 91, 113, 1441, 1566, 2170, 2499
Offset: 1
Examples
For k=16, e^16 is about 8886110.52. The next prime is 8886113, and the previous prime is 8886109, and their average 8886111 is at a distance of about 0.48 away from e^16.
Programs
-
PARI
default(realprecision,2000);for(k=1,+oo,r=exp(k);abs(r-(precprime(r)+nextprime(r))/2)<1&&print1(k,", "))
Comments