OFFSET
1,1
COMMENTS
2 together with (A137871: prime numbers isolated from neighboring primes by more than 8).
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1)=2 (-6,-4,-2,0,4,6,8,10 are nonprimes); a(2)=211 (203,205,207,209,213,215,217,219 are nonprimes).
MAPLE
Primes:= select(isprime, {2, seq(i, i=3..10000, 2)}):
S:=Primes minus `union`(seq(map(`+`, Primes, i), i=[-2, 2, -4, 4, -6, 6, -8, 8])):
sort(convert(S, list)); # Robert Israel, Jun 19 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Nov 13 2009
EXTENSIONS
Corrected by Robert Israel, Jun 19 2016
STATUS
approved