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”).

A102130
Primes of the form 8*n^2 + 4*n + 1.
1
13, 41, 313, 421, 1013, 1201, 1861, 2113, 2381, 3613, 5101, 7321, 9941, 10513, 13613, 14281, 16381, 20201, 21013, 21841, 24421, 30013, 34061, 41761, 47741, 51521, 52813, 54121, 59513, 60901, 82013, 83641, 90313, 97241, 99013, 100801, 106261
OFFSET
1,1
MATHEMATICA
Select[Table[8n^2+4n+1, {n, 0, 200}], PrimeQ] (* Harvey P. Dale, Jul 24 2012 *)
PROG
(Magma) [ a: n in [0..400] | IsPrime(a) where a is 8*n^2 +4*n + 1]; // Vincenzo Librandi, Nov 17 2010
CROSSREFS
Primes in A102083.
Sequence in context: A147247 A028468 A146995 * A080186 A287307 A332255
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Feb 14 2005
STATUS
approved