OFFSET
1,1
COMMENTS
Lower prime of a difference of 32 between consecutive primes.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
PROG
(PARI) lista(nn) = {p = 2; while (p < nn, q = nextprime(p+1); if (q - p == 32, print1(p, ", ")); p = q; ); } \\ Michel Marcus, Jul 17 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Douglas Winston (douglas.winston(AT)srupc.com), Feb 24 2007
STATUS
approved