A048988 Primes of the form 4*k^2 + 4*k + 59.
59, 67, 83, 107, 139, 179, 227, 283, 347, 419, 499, 587, 683, 787, 1019, 1283, 1427, 1579, 1907, 2083, 2267, 2459, 2659, 3083, 3307, 3539, 3779, 4027, 4283, 4547, 5099, 5387, 5683, 5987, 6299, 6619, 6947, 7283, 8707, 9467, 9859, 10259, 10667, 11083
Offset: 1
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial.
Programs
-
Magma
[ a: n in [0..250] | IsPrime(a) where a is 4*n^2 +4*n + 59]; // Vincenzo Librandi, Nov 19 2010
-
Maple
select(isprime, [4*k*(k+1)+59$k=0..100])[]; # Alois P. Heinz, Apr 16 2025
-
Mathematica
Select[(4 #^2 + 4 # + 59) & /@ Range[0, 100], PrimeQ] (* Robert Price, Apr 16 2025 *)
-
PARI
lista(nn) = for(k=0, nn, if(isprime(p=4*k^2+4*k+59), print1(p, ", "))); \\ Altug Alkan, Apr 18 2018
Comments