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.

A258805 Primes of the form k^8 + 1.

Original entry on oeis.org

2, 257, 65537, 37588592026706177, 92170395205042177, 147578905600000001, 284936905588473857, 3503536769037500417, 11007531417600000001, 11763130845074473217, 47330370277129322497, 50024641296100000001, 76872571987558646017, 416806419029812551937
Offset: 1

Views

Author

Vincenzo Librandi, Jun 11 2015

Keywords

Crossrefs

Subsequence of A002496, A037896.
Cf. A006314 (associated n), A060890.

Programs

  • Magma
    [a: n in [1..500] | IsPrime(a) where a is n^8+1];
    
  • Mathematica
    Select[Range[500]^8 + 1, PrimeQ]
  • PARI
    is(n)=ispower(n-1,8) && isprime(n) \\ Charles R Greathouse IV, Jun 11 2015

Formula

a(n) = A060890(A006314(n)). - Michel Marcus, Jun 11 2015