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

A241266
Numbers n such that 4*n^2+2*n-1 is not prime.
1
6, 7, 9, 11, 16, 17, 18, 20, 21, 26, 29, 31, 36, 37, 39, 40, 41, 42, 44, 45, 46, 49, 51, 52, 53, 54, 55, 56, 58, 59, 61, 62, 64, 66, 68, 71, 73, 75, 76, 78, 81, 83, 84, 85, 86, 89, 91, 95, 96, 97, 99, 100, 101, 102, 104, 105, 106, 107, 108, 111, 112, 113, 114
OFFSET
1,1
LINKS
EXAMPLE
7 is in this sequence because 4*7^2+2*7-1 = 209 = 11*19.
MATHEMATICA
Select[Range[200], ! PrimeQ[4 #^2 + 2 # - 1] &]
PROG
(Magma) [n: n in [1..150] |not IsPrime(4*n^2+2*n-1)];
CROSSREFS
Complement of A155736.
Sequence in context: A094010 A100348 A240882 * A095908 A094698 A361419
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 20 2014
STATUS
approved