login
A222227
Numbers n such that n and n + 16 are prime and there is a power of two in the interval (n,n+16).
2
3, 7, 13, 31, 241, 65521, 1048573, 2305843009213693951
OFFSET
1,1
COMMENTS
It is a conjecture that this is a finite sequence. A search was conducted out to 2^1500.
PROG
(Magma)
//Program finds primes separated by an even number (called gap) which
//have a power of two between them. Program starts with the smallest
//power of two above gap. Primes less than this starting point can be
//checked by inspection.
gap:=16;
start:=Ilog2(gap)+1;
for i:= start to 1000 do
powerof2:=2^i;
for k:=powerof2-gap+1 to powerof2-1 by 2 do
if (IsPrime(k) and IsPrime(k+gap)) then k;
end if;
end for;
end for;
CROSSREFS
Sequence in context: A023195 A100382 A292448 * A152981 A112040 A358560
KEYWORD
nonn
AUTHOR
Brad Clardy, Feb 23 2013
STATUS
approved