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.

A210506 Numbers k such that (11^k - 2^k)/9 is prime.

Original entry on oeis.org

2, 5, 11, 13, 331, 599, 18839, 23747, 24371, 29339, 32141, 67421
Offset: 1

Views

Author

Robert Price, Jan 25 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (11^# - 2^#)/9 ]& ]
  • PARI
    is(n)=isprime((11^n-2^n)/9) \\ Charles R Greathouse IV, Feb 17 2017