A235635 Primes whose base-5 representation is also the base-7 representation of a prime.
2, 3, 5, 13, 17, 23, 29, 41, 43, 47, 53, 59, 61, 71, 79, 83, 101, 103, 137, 157, 163, 181, 191, 223, 227, 239, 281, 347, 379, 383, 419, 443, 463, 479, 547, 563, 571, 593, 641, 691, 701, 743, 757, 811, 839, 863, 877, 967, 997, 1049, 1051, 1087, 1097, 1109, 1151, 1171, 1217, 1249, 1259, 1283
Offset: 1
Examples
17 = 32_5 and 32_7 = 23 are both prime, so 17 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[#, 5], 7] &] (* Giovanni Resta, Sep 12 2019 *)
-
PARI
is(p,b=7,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