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.

A220702 Numbers n such that n^5 + 5*n + 5^n is prime.

Original entry on oeis.org

1, 2, 3, 4, 6, 19, 23, 63, 76, 508, 561, 839, 894, 1389, 2513, 3436, 6121, 7412, 8418, 9184
Offset: 1

Views

Author

Vincenzo Librandi, Jan 07 2013

Keywords

Crossrefs

Cf. A220511.

Programs

  • Mathematica
    Select[Range[10000], PrimeQ[#^5 + 5*# + 5^#]&]
  • PARI
    is(n)=ispseudoprime(n^5+5*n+5^n) \\ Charles R Greathouse IV, Jun 13 2017