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.

A215445 Numbers k such that 7^k + k^7 - 1 is prime.

Original entry on oeis.org

1, 11, 65, 133, 679, 1571, 27517, 51631
Offset: 1

Views

Author

Vincenzo Librandi, Sep 06 2012

Keywords

Comments

a(9) > 10^5. - Robert Price, Feb 23 2014

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[7^# + #^7 - 1] &]
  • PARI
    is(n)=ispseudoprime(7^n+n^7-1) \\ Charles R Greathouse IV, Jun 06 2017

Extensions

a(7)-a(8) from Robert Price, Feb 23 2014