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.

A225955 Numbers n such that (15^n - 2^n)/13 is prime.

Original entry on oeis.org

2, 5, 11, 167, 317, 337, 349, 3449, 7517, 23003
Offset: 1

Views

Author

Robert Price, May 21 2013

Keywords

Comments

All terms are primes.
a(11) > 2*10^5.

Crossrefs

Programs

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