A292578 Primes of the form 11*n^2 + 55*n + 43.
43, 109, 197, 307, 439, 593, 769, 967, 1187, 1429, 1693, 1979, 2287, 2617, 2969, 3343, 3739, 4157, 4597, 5059, 6577, 7127, 7699, 8293, 9547, 10889, 11593, 14629, 15443, 17137, 18919, 19843, 20789, 21757, 24793, 25849, 26927, 28027, 30293, 32647, 33857, 35089
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial
Programs
-
Maple
select(isprime, [seq(11*n^2+55*n+43,n=0..100)]); # Robert Israel, Oct 01 2017
-
Mathematica
Select[Range[0,100]//11#^2+55#+43 &, PrimeQ]
-
PARI
for(n=0, 100, isprime(p=11*n^2+55*n+43)&& print1(p ", "))
Comments