A186395 Numbers k such that there are 3 primes between 100*k and 100*k + 99.
588, 695, 797, 1430, 1621, 1751, 1809, 1869, 1904, 1913, 2042, 2067, 2123, 2127, 2322, 2471, 2505, 2562, 2734, 2833, 2862, 2874, 2935, 3023, 3077, 3134, 3371, 3380, 3552, 3611, 3679, 3703, 3707, 3725, 3878, 4046, 4167, 4215
Offset: 1
Keywords
Examples
588 is in this sequence because there are 3 primes between 58800 and 58899 (58831, 58889 and 58897).
Links
- T. D. Noe, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
PARI
for(n=1, 1e6, if(sum(k=100*n, 100*(n+1), ispseudoprime(k))==3, print1(n", "))); \\ Charles R Greathouse IV, Feb 21 2011
-
PARI
N=100; s=0; forprime(p=2, 1e6, if(p>N, if(s==3, print1((N\100)-1, ", ")); s=1; N=100*(p\100+1), s++)) \\ Charles R Greathouse IV, Feb 21 2011
Comments