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.

A215443 Numbers k such that 5^k + k^5 - 1 is prime.

Original entry on oeis.org

1, 3, 9, 13, 27, 225, 505, 1605, 7417, 9193, 9235
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Comments

a(12) > 2*10^5. - Robert Price, May 24 2014

Crossrefs

Cf. A215437.

Programs

  • Magma
    [k: k in [0..300] | IsPrime(5^k + k^5 - 1)];
    
  • Mathematica
    Select[Range[0, 3000], PrimeQ[5^# + #^5 - 1] &]
  • PARI
    is(n)=ispseudoprime(5^n+n^5-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(9)-a(11) from Robert Price, May 24 2014