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.

A138050 Numbers k such that 23^k + 2 is prime.

Original entry on oeis.org

0, 11, 39, 323, 12415, 14655, 27679
Offset: 1

Views

Author

Alexander Adamchuk, Mar 02 2008

Keywords

Comments

No further terms < 100000. - Ray Chandler, Aug 03 2011

Crossrefs

Cf. A051783 (k such that 3^k + 2 is prime).
Cf. A087885 (k such that 5^k + 2 is prime).

Programs

  • Mathematica
    Do[ f = 23^n + 2; If[ PrimeQ[ f ], Print[ {n, f} ] ], {n, 1, 323} ]
  • PARI
    is(n)=ispseudoprime(23^n+2) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(5)-a(7) from Ray Chandler, Aug 01 2011