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.)
LINKS
P. De Geest, World!Of Palindromic Primes
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
KEYWORD
nonn,hard,base,changed
AUTHOR
Patrick De Geest, Aug 15 1998
STATUS
approved