A121250 Numbers n such that n^2 + 14 is prime.
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
Keywords
Examples
If n=183 then n^2 + 14 = 33503 (prime).
Links
- G. C. Greubel, Table of n, a(n) for n = 1..5000
Crossrefs
Programs
-
Magma
[n: n in [0..6000] | IsPrime(n^2+14)] // Vincenzo Librandi, Sep 03 2010
-
Mathematica
Select[Range[1,1500,2],PrimeQ[#^2+14]&] (* Harvey P. Dale, Aug 20 2011 *)
-
PARI
is(n)=isprime(n^2+14) \\ Charles R Greathouse IV, Feb 20 2017