login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A154356
Primes of the form 25n^2-14n+2 for n >= 0.
1
2, 13, 557, 1129, 1901, 5417, 8761, 10733, 15277, 23593, 30137, 41453, 59341, 74857, 80429, 86201, 92173, 104717, 118061, 179437, 253613, 284729, 306473, 352361, 364333, 414221, 453737, 523597, 598457, 798521, 1068329, 1217933, 1285049
OFFSET
1,1
LINKS
EXAMPLE
a(8)=10733 corresponds to n=21, therefore 10733=(3*21-1)^2+(4*21-1)^2=62^2+83^2 (see second comment in A154357). - Bruno Berselli, Dec 14 2011
MATHEMATICA
Join[{2}, Select[Table[25n^2-14n+2, {n, 500}], PrimeQ]] (* Harvey P. Dale, May 15 2011 *)
PROG
(Magma) [ a: n in [0..400] | IsPrime(a) where a is 25*n^2-14*n+2];
CROSSREFS
Cf. A154357.
Sequence in context: A013048 A342958 A012981 * A013111 A179434 A101342
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 07 2009
EXTENSIONS
Edited by Robert Hochberg, Jun 21 2010
STATUS
approved