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.

A211409 Numbers n such that (9^n + 4^n)/13 is prime.

Original entry on oeis.org

3, 5, 7, 11, 17, 19, 41, 53, 109, 167, 2207, 3623, 5059, 5471, 7949, 21211, 32993, 60251
Offset: 1

Views

Author

Robert Price, Feb 09 2013

Keywords

Comments

All terms are prime.
The next element, a(19), is greater than 10^5.

Crossrefs

Programs

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