login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A163499
Take A163498(n) written in binary, insert a 0 before every 1. a(n) is the decimal equivalent of the result.
2
2, 5, 37, 41, 149, 137, 293, 677, 1109, 593, 1301, 1321, 673, 1061, 1097, 2377, 641, 1289, 2693, 10837, 2069, 2089, 2129, 4261, 4421, 2593, 5281, 21157, 2689, 5393, 21589, 43669, 4133, 4229, 8741, 8849, 9257, 4673, 18757, 20773, 20809, 41621, 41641, 21013
OFFSET
1,1
COMMENTS
All terms of this sequence and of A163498 are primes.
Equivalent to: Take the numbers in A163498 written as binary, and insert a 0 after every 1. Divide by 2 and write it as a decimal. - Chai Wah Wu, Jul 29 2014
PROG
(Python) from sympy import prime, isprime
[int(bin(prime(n)).replace('1', '01'), 2) for n in range(1, 1000) if isprime(int(bin(prime(n)).replace('1', '01'), 2))] # Chai Wah Wu, Jul 28 2014
CROSSREFS
Cf. A163498.
Sequence in context: A331402 A284605 A106129 * A086218 A202637 A138658
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Jul 29 2009
EXTENSIONS
More terms from Chai Wah Wu, Jul 28 2014
STATUS
approved