OFFSET
1,1
COMMENTS
These primes are not the sum of two squares.
The number of terms less than 10^n: 1, 3, 5, 9, 18, 35, 83, 190, 425, 1105, 2962, 7695, 20187, 54280, 147464, 402660, 1116912, ..., . - Robert G. Wilson v, Apr 09 2008
LINKS
Robert G. Wilson v, Table of n, a(n) for n=1..7700
EXAMPLE
a(3)=59 because 7*11 - 7 - 11=59.
MATHEMATICA
lst = {}; p = q = 2; Do[p = q; q = NextPrime@q; r = p*q - p - q; If[ PrimeQ@r, AppendTo[lst, r]], {n, 2^31 - 1}]; lst {* Robert G. Wilson v, Apr 09 2008 *}
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Teofilatto, Jun 29 2004
EXTENSIONS
More terms from Robert G. Wilson v, Jul 01 2004
STATUS
approved