A022464 Primes of the form 36*n^2 - 810*n + 2753, n >= 0, sorted.
89, 359, 647, 953, 1277, 1619, 1979, 2357, 2753, 3167, 4049, 5003, 6029, 7127, 8297, 9539, 10853, 12239, 13697, 15227, 16829, 18503, 20249, 22067, 23957, 25919, 27953, 30059, 32237, 34487, 36809, 41669, 44207, 46817, 49499, 52253
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..500
- Eric Weisstein's World of Mathematics, Prime-Generating Polynomial.
Crossrefs
Cf. A050268.
Programs
-
Mathematica
Take[Sort[Select[Table[36n^2-810n+2753,{n,0,1000}], PrimeQ[#] && Positive[#]&]], 40] (* Harvey P. Dale, Oct 02 2011 *)