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.

A225097 Numbers n such that (13^n + 12^n)/25 is prime.

Original entry on oeis.org

3, 11, 13, 43, 67, 109, 15101, 43997
Offset: 1

Views

Author

Robert Price, Apr 27 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (13^# + 12^#)/25 ]& ]
  • PARI
    is(n)=ispseudoprime((13^n+12^n)/25) \\ Charles R Greathouse IV, May 22 2017