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

A155736
Numbers n such that 4*n^2+2*n-1 is a prime.
4
1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, 19, 22, 23, 24, 25, 27, 28, 30, 32, 33, 34, 35, 38, 43, 47, 48, 50, 57, 60, 63, 65, 67, 69, 70, 72, 74, 77, 79, 80, 82, 87, 88, 90, 92, 93, 94, 98, 103, 109, 110, 115, 118, 120, 122, 123, 124, 129, 132, 134, 144, 145, 147, 148, 149
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[0, 200], PrimeQ[4#^2+2#-1]&] (* Vincenzo Librandi, Sep 24 2012 *)
PROG
(Magma) [n: n in [0..150] | IsPrime(4*n^2+2*n-1)]; // Vincenzo Librandi, Sep 24 2012
CROSSREFS
Sequence in context: A247935 A378983 A005233 * A074897 A090556 A369152
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 26 2009
EXTENSIONS
Edited by N. J. A. Sloane, Jun 25 2010
STATUS
approved