OFFSET
1,1
COMMENTS
Two together with values of p+6 where (p,p+6) are both prime.
LINKS
Jinyuan Wang, Table of n, a(n) for n = 1..1000
EXAMPLE
2 is a term because 2 - 5/2 - 7/2 = -4 (nonprime) and 2 - 5/2 + 7/2 = 3 (prime).
MAPLE
for n from 1 to 200 do p := ithprime(n) ; if isprime(p+1) <> isprime(p-6) then printf("%d, ", p) ; end if; end do: # R. J. Mathar, Apr 24 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jan 25 2010
EXTENSIONS
Entries checked by R. J. Mathar, Apr 24 2010
STATUS
approved