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.
%I A080131 #9 Feb 16 2025 08:32:48 %S A080131 3,1,2,1,2,2,1,2,1,1,0,2,1,2,0,1 %N A080131 Conjectured number of generalized Fermat primes of the form (n+1)^2^k + n^2^k, with k>1. %C A080131 Primes that are the sum of consecutive integers (k=0) and consecutive squares (k=1) are excluded. 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. %H A080131 Anders Björn and Hans Riesel, <a href="http://www.jstor.org/stable/2584996">Factors of Generalized Fermat Numbers</a>, Mathematics of Computation, Vol. 67, No. 221, Jan., 1998, pp. 441-446. %H A080131 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/GeneralizedFermatNumber.html">Generalized Fermat Number</a> %e A080131 a(1) = 3 because there are three Fermat primes (with k>1): 17, 257, 65537. %t A080131 lst={}; Do[prms=0; Do[If[PrimeQ[(n+1)^2^k+n^2^k], prms++ ], {k, 2, 16}]; AppendTo[lst, prms], {n, 16}]; lst %Y A080131 Cf. A019434, A078902, A080133, A080134. %K A080131 nonn,hard,more %O A080131 1,1 %A A080131 _T. D. Noe_, Jan 30 2003