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.

A064539 Numbers n such that 2^n + n^2 is prime.

This page as a plain text file.
%I A064539 #31 May 11 2023 14:47:08
%S A064539 1,3,9,15,21,33,2007,2127,3759,29355,34653,57285,99069,1933695
%N A064539 Numbers n such that 2^n + n^2 is prime.
%C A064539 Values 2^2007+2007^2, 2^2127+2127^2, 2^3759+3759^2 were proved prime with Primo.
%C A064539 n is always an odd multiple of 3 (except for the first term), i.e., a(n) is a subsequence of A016945. - _Lekraj Beedassy_, Jan 01 2007
%C A064539 Some of the results were computed using the PrimeFormGW (PFGW) primality-testing program. - _Hugo Pfoertner_, Nov 14 2019
%D A064539 J.-M. De Koninck & A. Mercier, 1001 Problemes en Theorie Classique Des Nombres, Problem 165 pp. 30, 160, Ellipses Paris 2004.
%H A064539 Henri Lifchitz, Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=2%5En%2Bn%5E2">PRP Top Records.</a> 2^n+n^2.
%o A064539 (PARI) for(n=1,5000, if(isprime(2^n+n^2),print(n)))
%Y A064539 Cf. A001580, A016945, A061119, A072180, A094133.
%K A064539 nonn,more,hard
%O A064539 1,2
%A A064539 _Jason Earls_, Oct 16 2001
%E A064539 a(10)-a(13) from _Hugo Pfoertner_, Jun 26 2004
%E A064539 a(14) from _Ryan Propper_, May 11 2023. n=1933695 corresponds to a probable prime with 582101 digits, and was PRP tested with PFGW.