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.

A378815 Numbers k such that 5^k + 64 is prime.

Original entry on oeis.org

2, 58, 170, 1402, 1774, 10802, 86342
Offset: 1

Views

Author

Robert Price, Dec 08 2024

Keywords

Examples

			2 is a term because 5^2 + 64 = 89 is prime.
		

Crossrefs

Programs

  • Magma
    [k: k in [0..1000] |IsPrime (5^k+64)];
  • Mathematica
    Select[Range[0,5000],PrimeQ[5^#+64]&]

Extensions

a(6) from Michael S. Branicky, Dec 17 2024
a(7) from Michael S. Branicky, Dec 23 2024