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.

A384456 Positive integers k such that (2^k - 1)^k + 2 is prime.

Original entry on oeis.org

1, 2, 4, 8, 16, 40
Offset: 1

Views

Author

Thomas Ordowski, May 30 2025

Keywords

Comments

If it exists, a(7) > 800. - Hugo Pfoertner, Jun 03 2025

Crossrefs

Cf. A019434.

Programs

  • Mathematica
    Select[Range[100],PrimeQ[(2^#-1)^#+2] &] (* Stefano Spezia, Jun 01 2025 *)
  • PARI
    isok(k) = ispseudoprime((2^k - 1)^k + 2); \\ Michel Marcus, May 30 2025