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.

A213216 Numbers n such that (12^n + 11^n)/23 is prime.

Original entry on oeis.org

47, 401, 509, 8609
Offset: 1

Views

Author

Robert Price, Mar 02 2013

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (12^# + 11^#)/23 ]& ]
  • PARI
    is(n)=ispseudoprime((12^n+11^n)/23) \\ Charles R Greathouse IV, Feb 20 2017

Extensions

Removed incorrect first term of "2".