A235616 Primes whose base-6 representation also is the base-4 representation of a prime.
2, 3, 7, 19, 37, 79, 127, 229, 307, 487, 523, 547, 727, 733, 757, 1297, 1423, 1549, 1567, 1627, 1747, 1777, 2647, 2683, 2713, 2857, 2887, 3067, 3361, 3889, 3943, 4003, 4153, 4441, 4651, 4663, 7789, 7867, 8209, 8263, 8293, 8317, 8443, 8467, 9109, 9157, 9343, 9547, 9733
Offset: 1
Examples
E.g., 7 = 11_6 and 11_4 = 5 are both prime.
Links
- Robert Price, Table of n, a(n) for n = 1..24874
- M. F. Hasler, Primes whose base c expansion is also the base b expansion of a prime
Crossrefs
Programs
-
PARI
is(p,b=4,c=6)=vecmax(d=digits(p,c))
-
PARI
forprime(p=1,3e3,is(p,6,4)&&print1(vector(#d=digits(p,4),i,6^(#d-i))*d~,",")) \\ To produce the terms, this is more efficient than to select them using straightforwardly is(.)=is(.,4,6)
Comments