A235632 Primes whose base-5 representation is also the base-8 representation of a prime.
2, 3, 11, 13, 31, 41, 53, 73, 101, 131, 151, 223, 281, 313, 353, 401, 463, 521, 523, 541, 593, 661, 701, 733, 773, 941, 983, 1013, 1063, 1091, 1093, 1123, 1153, 1193, 1201, 1321, 1381, 1423, 1471, 1481, 1483, 1571, 1583, 1601, 1613, 1663, 1693, 1741, 1753, 1801, 1861, 1871, 1873
Offset: 1
Examples
11 = 21_5 and 21_8 = 17 are both prime, so 11 is a term.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- M. F. Hasler, Primes whose base c expansion is also the base b expansion of a prime
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[300]],PrimeQ[FromDigits[IntegerDigits[#,5],8]]&] (* Harvey P. Dale, Dec 15 2018 *)
-
PARI
is(p,b=8,c=5)=isprime(vector(#d=digits(p,c),i,b^(#d-i))*d~)&&isprime(p) \\ Note: This code is only valid for b > c.
Comments