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.

A080134 Conjectured number of generalized Fermat primes of the form (n+1)^2^k + n^2^k, with k>=0.

Original entry on oeis.org

5, 3, 3, 2, 4, 3, 2, 3, 3, 1, 1, 3, 1, 4, 1, 1
Offset: 1

Views

Author

T. D. Noe, Jan 30 2003

Keywords

Comments

Values of k <= 16 were tested. The sequence A078902 lists some of the generalized Fermat primes. Bjorn and Riesel examined generalized Fermat numbers for n <= 11 and k <= 999. The next n>1 for which (n+1)^2^k + n^2^k is prime for k=0,1,2,3,4 is n=826284.

Examples

			a(1) = 5 because there are five known Fermat primes: 3, 5, 17, 257, 65537.
		

Crossrefs

Programs

  • Mathematica
    lst={}; Do[prms=0; Do[If[PrimeQ[(n+1)^2^k+n^2^k], prms++ ], {k, 0, 16}]; AppendTo[lst, prms], {n, 16}]; lst