A050265 Primes of the form 2*n^2 + 11.
11, 13, 19, 29, 43, 61, 83, 109, 139, 173, 211, 349, 461, 523, 659, 733, 811, 1069, 1163, 1579, 1693, 1811, 1933, 2749, 3373, 3539, 3709, 4243, 4813, 5011, 5419, 5843, 7211, 7699, 7949, 8461, 9533, 9811, 10093, 11261, 13789, 14461, 15149, 16573
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..100] | IsPrime(a) where a is 2*n^2+11]; // Vincenzo Librandi, Dec 08 2011
-
Mathematica
Select[2Range[0, 100]^2 + 11, PrimeQ] (* Harvey P. Dale, May 20 2011 *)
Formula
a(n) = 11 + 2*(A092968(n))^2. - R. J. Mathar, Jan 03 2009
Extensions
11 added by Vincenzo Librandi, Dec 08 2011
Comments