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.

A221637 Numbers n such that (15^n + 14^n)/29 is prime.

Original entry on oeis.org

3, 127, 227, 1009, 1951, 5101, 14011
Offset: 1

Views

Author

Robert Price, May 28 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (15^# + 14^#)/29 ]& ]
  • PARI
    is(n)=ispseudoprime((15^n+14^n)/29) \\ Charles R Greathouse IV, Feb 20 2017