A235472 Primes whose base-9 representation also is the base-3 representation of a prime.
2, 11, 19, 83, 101, 163, 173, 739, 811, 821, 829, 911, 1549, 1559, 1621, 6563, 6581, 6661, 6733, 8111, 8191, 13933, 14753, 59069, 59141, 59779, 59797, 59951, 60589, 60607, 65629, 65701, 66359, 67079, 67231, 72271, 72353, 72901, 118189, 119557, 119657, 124669, 124823, 125399
Offset: 1
Examples
Both 17 = 21_9 and 21_3 = 7 are prime.
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=3,c=9)=vecmax(d=digits(p,c))
-
PARI
forprime(p=1,2e3,is(p,9,3)&&print1(vector(#d=digits(p,3),i,9^(#d-i))*d~,",")) \\ To produce the terms, this is more efficient than to select them using straightforwardly is(.)=is(.,3,9)
Comments