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.

Showing 1-1 of 1 results.

A114301 Numbers k such that 2^k + 3^k + 5^k + 7^k is a prime number.

Original entry on oeis.org

1, 3, 19, 1013, 4133, 9833, 30809, 64459
Offset: 1

Views

Author

Stefan Steinerberger, Feb 05 2006

Keywords

Comments

All terms are odd. - Robert Israel, May 03 2018

Examples

			2^3 + 3^3 + 5^3 + 7^3 = 503 (prime), thus 3 is in the sequence.
		

Crossrefs

Cf. A135168.

Programs

  • Maple
    select(t -> isprime(2^t+3^t+5^t+7^t), [seq(i,i=1..10000,2)]); # Robert Israel, May 03 2018
  • Mathematica
    Do[If[PrimeQ[2^n+3^n+5^n+7^n], Print[n]], {n,1,5000}]

Extensions

a(6) from Ryan Propper, Mar 24 2006
a(7) from Joao Carlos Leandro da Silva (zxawyh66(AT)yahoo.com), Jun 01 2009
a(8) from Michael S. Branicky, Jun 04 2024
Showing 1-1 of 1 results.