A222137 Primes of the form 2^p - p^2, where p is prime.
7, 79, 130783, 523927, 9007199254738183, 9671406556917033397642519, 215679573337205118357336120696157045389097155380324579848828881942199
Offset: 1
Keywords
Examples
130783 is in the sequence because it is prime and it is of the form 2^p - p^2 where p=17 is prime.
Crossrefs
Cf. A075896.
Programs
-
Mathematica
lst={}; Do[p=Prime[n]; If[PrimeQ[p=2^p-p^2], AppendTo[lst, p]], {n, 100}]; lst
Comments