OFFSET
1,1
COMMENTS
252 is the smallest palindrome not in this list.
LINKS
Mathematics Stack Exchange, Are there infinitely many "super-palindromes"?.
EXAMPLE
2 is in this list since its highest prime factor is 2. 2/2=1 is a palindrome.
22 is in this list since its highest prime factor is 2. 22/2=11 is a palindrome.
252 is not in this list since its highest prime factor is 7. 252/7=36 is not a palindrome.
MATHEMATICA
q[k_] := PalindromeQ[k] && PalindromeQ[k/FactorInteger[k][[-1, 1]]]; Select[Range[2, 720], q] (* Amiram Eldar, Mar 24 2026 *)
PROG
(Python)
from itertools import islice
from sympy import primefactors
from oeis_sequences.OEISsequences import is_pal, pal10_gen
def A394545_gen(): # generator of terms
return filter(lambda m: m>1 and is_pal(m//max(primefactors(m))), pal10_gen())
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Robin Jones, Mar 24 2026
STATUS
approved
