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!)
A056206 Smallest prime p such that p + 2^n is also a prime. 13
2, 3, 3, 3, 3, 5, 3, 3, 7, 11, 7, 5, 3, 17, 37, 3, 3, 29, 3, 53, 7, 17, 67, 11, 43, 41, 97, 29, 3, 11, 3, 11, 61, 17, 79, 53, 31, 29, 7, 23, 97, 71, 277, 29, 7, 59, 127, 5, 61, 191, 193, 101, 37, 5, 163, 3, 97, 131, 577, 131, 151, 197, 193, 29, 13, 131, 709, 3, 61 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..2500 (first 1001 terms from T. D. Noe)
FORMULA
a(n) = Min{p|p+2^n=q, both p and q are primes}.
EXAMPLE
n=9, 512 + {2,3,5,7,11,...} = {514,515,519,523,...} = {2*257, 5*103, 11*47, 3*173, 523=prime, ...}. The smallest suitable prime is 11 and it gives 523 = 512 + 11. So a(9)=11.
MAPLE
a:= proc(n) option remember; local o, p; o, p:=2^n, 2;
while not isprime(o+p) do p:= nextprime(p) od; p
end:
seq(a(n), n=0..75); # Alois P. Heinz, Mar 20 2023
MATHEMATICA
Table[i=1; While[!PrimeQ[2^n+(p=Prime[i])], i++]; p, {n, 0, 72}] (* Jayanta Basu, May 23 2013 *)
CROSSREFS
Sequence in context: A307392 A046886 A257246 * A257245 A329245 A155047
KEYWORD
nonn
AUTHOR
Labos Elemer, Oct 06 2000
EXTENSIONS
a(0) from Jayanta Basu, May 23 2013
STATUS
approved

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)