OFFSET
1,1
COMMENTS
A284034 gives the corresponding short leg primes in the definition.
EXAMPLE
The prime q = 3121 is in the sequence because q - 2 = 3119 is prime and {79, 3120, 3121} is a Pythagorean triple with prime short leg (see example in A284034).
PROG
(PARI) lista(nn) = forprime(p=3, nn, if (isprime(p) && isprime((p^2-3)/2) && isprime(q=(p^2+1)/2), print1(q, ", "))); \\ Michel Marcus, Apr 01 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Giuseppe Coppoletta, Mar 19 2017
EXTENSIONS
More terms from Michel Marcus, Apr 01 2017
STATUS
approved