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

A121250
Numbers n such that n^2 + 14 is prime.
6
3, 15, 27, 33, 45, 75, 87, 93, 165, 183, 195, 207, 243, 285, 297, 303, 345, 363, 375, 405, 435, 453, 495, 513, 537, 573, 585, 615, 627, 633, 657, 663, 717, 813, 843, 975, 1053, 1065, 1083, 1095, 1125, 1137, 1167, 1203, 1287, 1317, 1335, 1353, 1413, 1437, 1455
OFFSET
1,1
LINKS
EXAMPLE
If n=183 then n^2 + 14 = 33503 (prime).
MATHEMATICA
Select[Range[1, 1500, 2], PrimeQ[#^2+14]&] (* Harvey P. Dale, Aug 20 2011 *)
PROG
(Magma) [n: n in [0..6000] | IsPrime(n^2+14)] // Vincenzo Librandi, Sep 03 2010
(PARI) is(n)=isprime(n^2+14) \\ Charles R Greathouse IV, Feb 20 2017
KEYWORD
nonn
AUTHOR
Parthasarathy Nambi, Sep 06 2006
STATUS
approved