A235469 Primes whose base-6 representation also is the base-3 representation of a prime.
2, 13, 43, 73, 223, 1777, 2593, 2887, 3037, 3067, 3109, 7993, 9157, 9337, 10597, 17077, 17107, 17137, 17317, 17359, 18229, 18661, 46663, 48247, 49297, 49537, 54517, 54727, 54877, 54907, 54949, 55987, 56197, 56209, 56239, 57097, 63589, 63727, 64879, 65089, 65101, 95089, 95917, 96157
Offset: 1
Examples
E.g., 13 = 21_6 and 21_3 = 7 are both prime.
Links
- Robert Price, Table of n, a(n) for n = 1..1959
- M. F. Hasler, Primes whose base c expansion is also the base b expansion of a prime
Crossrefs
Programs
-
PARI
is(p,b=3,c=6)=vecmax(d=digits(p,c))
-
PARI
forprime(p=1,1e3,is(p,6,3)&&print1(vector(#d=digits(p,3),i,6^(#d-i))*d~,",")) \\ To produce the terms, this is more efficient than to select them using straightforwardly is(.)=is(.,3,6)
Comments