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.

A126438 Primes of the form n^9-n-1.

Original entry on oeis.org

509, 262139, 10077689, 387420479, 68719476719, 118587876479, 1207269217769, 7625597484959, 10578455953379, 129961739795039, 327381934393919, 1628413597910399, 1953124999999949, 5416169448144839, 10077695999999939
Offset: 1

Views

Author

Artur Jasinski, Dec 26 2006

Keywords

Crossrefs

Programs

  • Mathematica
    k = 9; a = {}; Do[If[PrimeQ[x^k - x - 1], AppendTo[a, x^k - x - 1]], {x, 1, 100}]; a
    Select[Table[n^9-n-1,{n,100}],PrimeQ] (* Harvey P. Dale, Mar 09 2016 *)