OFFSET
1,1
COMMENTS
Every term is prime.
If a(n) is written in binary, then the leftmost 2 digits are "10". If the leftmost "10" is replaced with "1", then we would have the binary representation of A152084(n), which is a prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
filter:= n -> isprime(n) and isprime(n + 2^ilog2(n)):
map(t -> t + 2^ilog2(t), select(filter, [seq(i, i=3..10000, 2)])); # Robert Israel, Mar 14 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Nov 23 2008
EXTENSIONS
Extended by Ray Chandler, Nov 26 2008
STATUS
approved