login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A274235 Numbers n such that n^2048 + (n+1)^2048 is prime. 3

%I #11 Sep 08 2022 08:46:17

%S 754,1289,1368,1813,3159,3280,3301,4976,6204,6283,6723,6904,7141,

%T 10246,11417,13268,15456,19428,19683,19698,20298,21484,22543,23702,

%U 23815,24747,27010,32319,34133,36201,37030,39438,41292,44472,47623,50198,51031,51370,51521,52628,53073,53309,53767,55911,56630,59424

%N Numbers n such that n^2048 + (n+1)^2048 is prime.

%C The terms correspond only to probable primes.

%H Richard Fischer, <a href="http://www.fermatquotient.com/PrimSerien/PrimPotP.txt">Primzahlen mit der Form (B+1)^N+B^N</a>.

%H Henri Lifchitz & Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/searchform.php?form=x%5E2048%2By%5E2048&amp;action=Search">Search for : x^2048+y^2048</a>.

%t Select[Range[1, 10000], PrimeQ[#^2048 + (#+1)^2048] &]

%o (PARI) for(n=1, 10000, if(isprime(n^2048 + (n+1)^2048), print1(n, ", ")))

%o (Magma) [n: n in [1..10000] |IsPrime(n^2048 + (n+1)^2048)]

%Y Cf. A005097, A027861, A155211, A153504, A154535, A174156, A174157, A215431, A215432, A215433, A274234, A274236, A274237.

%K nonn

%O 1,1

%A _Tim Johannes Ohrtmann_, Jun 15 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 11:01 EDT 2024. Contains 371936 sequences. (Running on oeis4.)