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.

A227049 Numbers k such that (15^k + 4^k)/19 is prime.

Original entry on oeis.org

3, 31, 157, 239, 1553, 5521, 25561
Offset: 1

Views

Author

Robert Price, Jun 29 2013

Keywords

Comments

All terms are primes.
a(8) > 10^5.

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (15^# + 4^#)/19 ]& ]
  • PARI
    is(n)=ispseudoprime((15^n+4^n)/19) \\ Charles R Greathouse IV, Jun 06 2017