A235630 Primes whose base-7 representation is also the base-8 representation of a prime.
2, 3, 5, 17, 47, 71, 89, 101, 197, 229, 241, 269, 271, 337, 353, 383, 479, 521, 577, 607, 631, 647, 673, 677, 719, 743, 761, 827, 997, 1097, 1153, 1181, 1193, 1279, 1289, 1303, 1319, 1447, 1543, 1601, 1697, 1811, 1823, 1907, 1951, 1993, 2017, 2131, 2203, 2243, 2339, 2357, 2383, 2549
Offset: 1
Examples
17 = 23_7 and 23_8 = 19 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[#, 7], 8] &] (* Giovanni Resta, Sep 12 2019 *)
-
PARI
is(p,b=8,c=7)=isprime(vector(#d=digits(p,c),i,b^(#d-i))*d~)&&isprime(p) \\ Note: This code is only valid for b > c.
Comments