login
A087872
Primes of the form (4*k + 3)^2 + (4*k + 2)^2 where k=0,1,2,3,...
2
13, 421, 1013, 1861, 2381, 3613, 5101, 9941, 13613, 16381, 21013, 24421, 30013, 34061, 47741, 52813, 60901, 82013, 99013, 106261, 168781, 218461, 223781, 234613, 304981, 337021, 370661, 377581, 391613, 405901, 413141, 427813, 450301, 481181
OFFSET
1,1
COMMENTS
Primes of the form 32*k^2 + 40*k + 13. - Vincenzo Librandi, Dec 12 2011
LINKS
MATHEMATICA
Select[Table[32n^2+40n+13, {n, 0, 800}], PrimeQ] (* Vincenzo Librandi, Dec 12 2011 *)
PROG
(PARI) fourmp1b(n) = { for(x=1, n, z=(4*x+3)^2+(4*x+2)^2; if(isprime(z), print1(z", ")) ) }
(Magma) [a: n in [0..200] | IsPrime(a) where a is 32*n^2+40*n+13]; // Vincenzo Librandi, Dec 12 2011
CROSSREFS
Cf. A088759.
Sequence in context: A258178 A266486 A142484 * A308341 A098890 A012023
KEYWORD
nonn,easy
AUTHOR
Cino Hilliard, Oct 10 2003
EXTENSIONS
More terms from Ray Chandler, Oct 19 2003
a(1)=13 inserted by Vincenzo Librandi, Dec 12 2011
Description revised to agree with insertion of new term by Ray Chandler, May 21 2017
STATUS
approved