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.

A216619 Numbers k such that 10^k + k^10 - 1 is prime.

Original entry on oeis.org

2, 8, 1592, 2380
Offset: 1

Views

Author

Vincenzo Librandi, Sep 11 2012

Keywords

Comments

Next term > 10^4.
a(5) > 10^5. - Robert Price, Oct 08 2015

Crossrefs

Programs

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