OFFSET
1,1
COMMENTS
There are 5900602 possible prime patterns for centuries having 8 primes. - Tim Johannes Ohrtmann, Aug 27 2015
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
48 is in this sequence because there are 8 primes between 4800 and 4899 (4801, 4813, 4817, 4831, 4861, 4871, 4877 and 4889).
PROG
(PARI) for(n=1, 1e6, if(sum(k=100*n, 100*(n+1), ispseudoprime(k))==8, print1(n", "))); \\ Charles R Greathouse IV, Feb 21 2011
(PARI) N=100; s=0; forprime(p=2, 1e6, if(p>N, if(s==8, 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