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.

A216618 Numbers k such that 10^k + k^10 + 1 is prime.

Original entry on oeis.org

0, 726, 1974, 3336
Offset: 1

Views

Author

Vincenzo Librandi, Sep 11 2012

Keywords

Comments

a(5) > 10^5. - Robert Price, Oct 06 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