A235465 Primes whose base-8 representation also is the base-2 representation of a prime.
73, 521, 577, 4673, 32833, 33289, 33353, 36929, 37441, 262153, 262217, 262657, 295433, 2097673, 2101313, 2359369, 2363401, 2392073, 16777289, 16810049, 16814089, 16814153, 16814657, 17039881, 17043977, 17076809, 18874433, 18907201, 19137089, 19140617, 134222401, 134483969, 134484481, 134513161
Offset: 1
Examples
73 = 111_8 and 111_2 = 7 are both prime, so 73 is a term.
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..10000
- M. F. Hasler, Primes whose base c expansion is also the base b expansion of a prime
Crossrefs
Programs
-
PARI
is(p,b=2,c=8)=vecmax(d=digits(p,c))
-
PARI
forprime(p=1,1e3,is(p,8,2)&&print1(vector(#d=digits(p,2),i,8^(#d-i))*d~,",")) \\ To produce the terms, this is much more efficient than to select them using straightforwardly is(.)=is(.,2,8)
Comments