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.

A272410 Primes of the form abs(n^4 - 97n^3 + 3294n^2 - 45458n + 213589) in order of increasing nonnegative n.

Original entry on oeis.org

213589, 171329, 135089, 104323, 78509, 57149, 39769, 25919, 15173, 7129, 1409, 2341, 4451, 5227, 4951, 3881, 2251, 271, 1873, 4019, 6029, 7789, 9209, 10223, 10789, 10889, 10529, 9739, 8573, 7109, 5449, 3719, 2069, 673, 271, 541, 109, 1949, 5273, 10399, 17669
Offset: 1

Views

Author

Robert Price, Apr 30 2016

Keywords

Examples

			78509 is in this sequence since abs(4^4 - 97*4^3 + 3294*4^2 - 45458*4 + 213589) = abs(256-6208+52704-181832+213589) = 78509 is prime.
		

Crossrefs

Programs

  • Mathematica
    n = Range[0, 100]; Select[n^4 - 97n^3 + 3294n^2 - 45458n + 213589, PrimeQ[#] &]