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.

A126437 Primes of the form k^8-k-1.

Original entry on oeis.org

1679609, 5764793, 99999989, 4294967279, 282429536453, 377801998307, 5352009260441, 16815125390579, 39062499999949, 72301961339081, 83733937890569, 281474976710591, 513798374428571, 1113034787454899
Offset: 1

Views

Author

Artur Jasinski, Dec 26 2006

Keywords

Crossrefs

Programs

  • Mathematica
    k = 8; a = {}; Do[If[PrimeQ[x^k - x - 1], AppendTo[a, x^k - x - 1]], {x, 1, 100}]; a
    Select[Table[k^8-k-1,{k,80}],PrimeQ] (* Harvey P. Dale, Nov 06 2021 *)