[go: up one dir, main page]

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

A086285
Numbers k such that 1 + 2k + 3k^2 is prime.
8
2, 12, 14, 18, 24, 26, 32, 38, 44, 56, 62, 68, 90, 92, 98, 114, 120, 126, 128, 144, 150, 158, 164, 168, 170, 176, 180, 186, 192, 200, 210, 212, 216, 230, 246, 254, 260, 266, 276, 278, 282, 290, 300, 318, 332, 344, 354, 362, 366, 378, 396, 398, 408, 420, 432
OFFSET
1,1
COMMENTS
Excluding a(1), these are also the bases in which 321 represents a prime number.
LINKS
MATHEMATICA
Select[Range[500], PrimeQ[1+2#+3#^2]&] (* Harvey P. Dale, Jun 23 2012 *)
PROG
(PARI) is(n)=isprime(1+2*n+3*n^2) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
Cf. A056109 (3n^2+2n+1).
Sequence in context: A286241 A078755 A186647 * A124163 A108976 A073598
KEYWORD
easy,nonn
AUTHOR
Zak Seidov, Aug 28 2003
STATUS
approved