login
A065721
Primes p whose base-3 expansion is also the decimal expansion of a prime.
41
2, 67, 79, 103, 139, 157, 181, 193, 199, 211, 229, 277, 283, 307, 313, 349, 367, 373, 409, 421, 433, 439, 463, 523, 541, 547, 571, 577, 751, 829, 883, 919, 1021, 1033, 1039, 1087, 1171, 1249, 1303, 1429, 1483, 1579, 1597, 1621, 1741, 1783, 1789, 1873
OFFSET
1,1
COMMENTS
In general rebase notation (Marc LeBrun): p3 = (3) [p] (10).
EXAMPLE
1033_10 = 1102021_3 is prime, and so is 1102021_10.
MATHEMATICA
Select[ Range[1900], PrimeQ[ # ] && PrimeQ[ FromDigits[ IntegerDigits[ #, 3]]] & ]
PROG
(PARI) is(p, b=10, c=3)=isprime(vector(#c=digits(p, c), i, b^(#c-i))*c~)&&isprime(p) \\ M. F. Hasler, Jan 12 2014
CROSSREFS
Primes in A036954.
Cf. A065720 up to A065727, A065361. See the Links for further cross-references.
Sequence in context: A107993 A131604 A139861 * A030472 A106998 A275114
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Nov 15 2001
EXTENSIONS
Definition clarified by M. F. Hasler, Jan 12 2014
STATUS
approved