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

A155133
Numbers n >= 0 such that 5n^2+4n+1 is prime.
1
2, 4, 8, 10, 12, 18, 20, 30, 40, 44, 52, 54, 58, 62, 70, 72, 80, 84, 92, 98, 104, 114, 120, 124, 130, 132, 138, 140, 158, 168, 172, 174, 182, 188, 192, 194, 212, 214, 222, 238, 254, 262, 268, 274, 280, 288, 290, 294, 300, 302, 304, 314, 318, 328, 338, 342, 348
OFFSET
1,1
LINKS
EXAMPLE
For n=2, p=29; n=30, p=421; n=44, p=9857.
MATHEMATICA
Select[Range[0, 400], PrimeQ[5#^2+4#+1]&] (* Vincenzo Librandi, Sep 24 2012 *)
PROG
(Magma) [n: n in [0..450] | IsPrime(5*n^2+4*n+1)]; Vincenzo Librandi, Sep 24 2012
CROSSREFS
Sequence in context: A032368 A134533 A089953 * A331669 A154788 A219617
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 20 2009
STATUS
approved