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.

A215438 Primes of form 5^k + k^5 + 1.

Original entry on oeis.org

2, 7, 94933, 48989177, 2910383045673370413850001
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Crossrefs

Cf. A215442.

Programs

  • Magma
    [ a: n in [0..100] | IsPrime(a) where a is 5^n + n^5 + 1 ]
  • Mathematica
    Select[Table[5^n + n^5 + 1, {n, 0, 200}], PrimeQ ]