A124129 Primes p for which there are no primes between p and p+sqrt(p).
3, 7, 13, 23, 31, 113
Offset: 1
Examples
a(1) = 3 because sqrt(3) < 2. a(6) = 113 because sqrt(113) < 14.
Links
- A. Granville, Harald Cramér and the distribution of prime numbers, Scandinavian Actuarial Journal, Volume 1995, 1995 - Issue 1.
- Matt Visser, Strong version of Andrica's conjecture, arXiv:1812.02762 [math.NT], 2018.
Programs
-
Mathematica
Select[ Prime@ Range@100, PrimePi[ # + Sqrt@# ] - PrimePi@# == 0 &] (* Robert G. Wilson v, Dec 18 2006 *)
Comments