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.

A215437 Primes of form 5^k + k^5 - 1.

Original entry on oeis.org

5, 367, 2012173, 1221074417, 7450580596938177031
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Programs

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