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.

A378866 Numbers k such that 5^k + 72 is prime.

Original entry on oeis.org

0, 2, 3, 118, 498, 1023, 4262, 6094, 6382, 26334, 56062
Offset: 1

Views

Author

Robert Price, Dec 09 2024

Keywords

Examples

			3 is a term because 5^3 + 72 = 197 is prime.
		

Crossrefs

Programs

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

Extensions

a(8)-a(11) from Michael S. Branicky, Dec 19 2024