login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A046475
Primes that are palindromic in bases 6 and 10.
0
2, 3, 5, 7, 191, 108151801, 11271517211, 155259838952551
OFFSET
1,1
COMMENTS
(The only primes that are palindromic in bases 5 and 10 that have been found are the trivial solutions 2 and 3.)
EXAMPLE
191_10 = 515_6. - Jon E. Schoenfield, Apr 10 2021
MATHEMATICA
pal6Q[p_]:=With[{idn6=IntegerDigits[p, 6]}, PalindromeQ[p]&&idn6==Reverse[idn6]]; Select[Prime[Range[63*10^5]], pal6Q] (* The program generates the first six terms of the sequence. *) (* Harvey P. Dale, Dec 04 2024 *)
CROSSREFS
Sequence in context: A069803 A083184 A046478 * A029978 A360986 A122764
KEYWORD
nonn,hard,base,changed
AUTHOR
Patrick De Geest, Aug 15 1998
STATUS
approved