OFFSET
1,2
COMMENTS
Note that one has to be careful to distinguish between pairs of consecutive primes (p,q) with q-p = 6 (A031924), and pairs of primes (p,q) with q-p = 6 (A023201). Here we consider the latter, whereas A093738 considers the former. - N. J. A. Sloane, Mar 07 2021
LINKS
A. Granville, G. Martin, Prime number races, Amer. Math. Monthly vol 113, no 1 (2006) p 1.
Eric Weisstein's World of Mathematics, Sexy Primes. [The definition in this webpage is unsatisfactory, because it defines a "sexy prime" as a pair of primes.- N. J. A. Sloane, Mar 07 2021].
PROG
(PARI) {c=0; p=7; for(n=1, 9, while(p<10^n, if(isprime(p-6), c++); p=nextprime(p+1)); print1(c, ", "))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Mar 28 2003
EXTENSIONS
a(8) and a(9) from Klaus Brockhaus, Mar 30 2003
More terms from R. J. Mathar, Aug 05 2007
STATUS
approved