OFFSET
1,1
COMMENTS
There are 830270 possible prime patterns for centuries having 6 primes. - Tim Johannes Ohrtmann, Aug 27 2015
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
186 is in this sequence because there are 6 primes between 18600 and 18699 (18617, 18637, 18661, 18671, 18679 and 18691).
MATHEMATICA
Select[Range[1100], PrimePi[100#+99]-PrimePi[100#]==6&] (* Harvey P. Dale, Jun 24 2018 *)
PROG
(PARI) for(n=1, 1e6, if(sum(k=100*n, 100*(n+1), ispseudoprime(k))==6, print1(n", "))); \\ Charles R Greathouse IV, Feb 21 2011
(PARI) N=100; s=0; forprime(p=2, 1e6, if(p>N, if(s==6, print1((N\100)-1, ", ")); s=1; N=100*(p\100+1), s++)) \\ Charles R Greathouse IV, Feb 21 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Tim Johannes Ohrtmann, Feb 20 2011
STATUS
approved