A231477 Primes whose base-3 representation is also the base-7 representation of a prime.
2, 3, 23, 41, 47, 53, 61, 67, 71, 89, 113, 127, 131, 137, 191, 193, 223, 251, 269, 283, 293, 311, 353, 397, 409, 421, 443, 463, 491, 503, 509, 541, 569, 601, 613, 701, 773, 787, 983, 1013, 1031, 1091, 1117, 1213, 1223, 1429, 1499, 1543, 1549, 1579, 1619, 1621, 1697, 1699, 1733, 1873, 1933, 1949, 1951, 1973
Offset: 1
Examples
23 = 212_3 and 212_7 = 107 are both prime, so 23 is a term.
Links
- Giovanni Resta, 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
-
Mathematica
Select[Prime@Range@500, PrimeQ@FromDigits[IntegerDigits[#, 3], 7] &] (* Giovanni Resta, Sep 12 2019 *)
-
PARI
is(p,b=7,c=3)=isprime(vector(#d=digits(p,c),i,b^(#d-i))*d~)&&isprime(p) \\ Note: This code is only valid for b > c.
Comments