A235617 Primes whose base-7 representation also is the base-4 representation of a prime.
2, 3, 17, 59, 71, 73, 113, 353, 367, 449, 463, 491, 701, 743, 757, 787, 857, 1039, 1151, 1193, 2411, 2423, 2467, 2551, 2843, 3109, 3137, 3209, 3251, 4817, 4903, 5209, 5657, 5839, 5939, 5953, 7211, 7603, 7703, 8009, 8039, 8291, 8387, 16831, 16871, 16927, 17207, 17321, 17837, 19211, 19267, 20261, 20287, 22123, 22303
Offset: 1
Examples
E.g., 17 = 23_7 and 23_4 = 11 are both prime.
Links
- Robert Price, Table of n, a(n) for n = 1..8515
- M. F. Hasler, Primes whose base c expansion is also the base b expansion of a prime
Crossrefs
Programs
-
PARI
is(p,b=4,c=7)=vecmax(d=digits(p,c))
-
PARI
forprime(p=1,3e3,is(p,7,4)&&print1(vector(#d=digits(p,4),i,7^(#d-i))*d~,",")) \\ To produce the terms, this is more efficient than to select them using straightforwardly is(.)=is(.,4,9)
Comments