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.

A272324 Primes of the form abs(82n^3 - 1228n^2 + 6130n - 5861) in order of increasing nonnegative n.

Original entry on oeis.org

5861, 877, 2143, 3691, 4259, 4339, 4423, 5003, 6571, 9619, 14639, 22123, 32563, 46451, 64279, 86539, 113723, 146323, 184831, 229739, 281539, 340723, 407783, 483211, 567499, 661139, 764623, 878443, 1003091, 1139059, 1286839, 1446923, 2005919, 2693363, 3229579
Offset: 1

Views

Author

Robert Price, Apr 25 2016

Keywords

Examples

			4259 is in this sequence since 82*4^3 - 1228*4^2 + 6130*4 - 5861 = 5248-19648+24520-5861 = 4259 is prime.
		

Crossrefs

Programs

  • Mathematica
    n = Range[0, 100]; Select[82n^3 - 1228n^2 + 6130n - 5861, PrimeQ[#] &]