cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A022464 Primes of the form 36*n^2 - 810*n + 2753, n >= 0, sorted.

Original entry on oeis.org

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

Views

Author

N. J. A. Sloane, Jun 12 2001

Keywords

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 *)