A048059 Primes of the form k^2 + k + 11.
11, 13, 17, 23, 31, 41, 53, 67, 83, 101, 167, 193, 251, 283, 317, 353, 431, 563, 661, 823, 881, 941, 1201, 1493, 1571, 1733, 2081, 2267, 2663, 2767, 3203, 3433, 3671, 3793, 3917, 4567, 4703, 5413, 5711, 6173, 6491, 6653, 6983, 7151, 7321, 8753, 8941, 9323, 10111
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial.
Programs
-
Magma
[ a: n in [0..200] | IsPrime(a) where a is n^2+n+11 ]; // Vincenzo Librandi, Dec 07 2011
-
Mathematica
lst={}; Do[p=n^2+n+11; If[PrimeQ[p], AppendTo[lst,p]], {n,0,5*5!}]; lst (* Vladimir Joseph Stephan Orlovsky, Jan 27 2009 *) Select[Table[n^2+n+11, {n,0,600}], PrimeQ] (* Vincenzo Librandi, Dec 07 2011 *)
Comments