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.

A217320 Numbers n such that (13^n - 2^n)/11 is prime.

Original entry on oeis.org

3, 5, 31, 73, 89, 521, 3943, 8719
Offset: 1

Views

Author

Robert Price, Mar 18 2013

Keywords

Comments

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

Crossrefs

Programs

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