A235624 Primes whose base-4 representation is also the base-6 representation of a prime.
2, 3, 5, 13, 17, 37, 61, 73, 109, 157, 173, 181, 229, 233, 241, 257, 317, 337, 349, 373, 397, 409, 541, 557, 569, 601, 613, 661, 761, 769, 797, 821, 857, 953, 1013, 1021, 1033, 1069, 1153, 1181, 1193, 1201, 1229, 1237, 1297, 1321, 1373, 1429, 1481, 1609, 1621, 1637, 1709, 1801, 1861, 1877, 1889, 1901, 1973
Offset: 1
Examples
5 = 11_4 and 11_6 = 7 are both prime, so 5 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[#, 4], 6] &] (* Giovanni Resta, Sep 12 2019 *)
-
PARI
is(p,b=6,c=4)=isprime(vector(#d=digits(p,c),i,b^(#d-i))*d~)&&isprime(p) \\ Note: This code is only valid for b > c.
Comments