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.

A272555 Primes of the form abs(1/(36)(n^6 - 126n^5 + 6217n^4 - 153066n^3 + 1987786n^2 - 13055316n + 34747236)) in order of increasing nonnegative n.

Original entry on oeis.org

965201, 653687, 429409, 272563, 166693, 98321, 56597, 32969, 20873, 15443, 13241, 12007, 10429, 7933, 4493, 461, 3583, 6961, 9007, 9157, 7019, 2423, 4549, 13553, 23993, 35051, 45737, 54959, 61613, 64693, 63421, 57397, 46769, 32423, 16193, 1091, 8443, 6271
Offset: 1

Views

Author

Robert Price, May 02 2016

Keywords

Examples

			166693 is in this sequence since abs(1/(36)(4^6 - 126*4^5 + 6217*4^4 - 153066*4^3 + 1987786*4^2 - 13055316*4 + 34747236)) = abs((4096 - 129024 + 1591552 - 9796224 + 31804576 - 5222126 + 34747236)/36) = 166693 is prime.
		

Crossrefs

Programs

  • Mathematica
    n = Range[0, 100]; Select[1/(36)(n^6 - 126n^5 + 6217n^4 - 153066n^3 + 1987786n^2 - 13055316n + 34747236), PrimeQ[#] &]