OFFSET
1,1
COMMENTS
Palindromes with or without trailing zeros are trivially divisible their reverses.
If k is in the sequence then 10*k is in the sequence. - David A. Corneth, Jun 16 2021
EXAMPLE
510 is divisible by its reverse 15. Thus, 510 is in this sequence.
PROG
(Python)
def pal(s): return s == s[::-1]
def rmz(s): return s.strip('0')
def ok(n): s = str(n); return not (pal(s) or pal(rmz(s)) or n%int(s[::-1]))
print(list(filter(ok, range(82000)))) # Michael S. Branicky, Jun 16 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tanya Khovanova, Jun 16 2021
STATUS
approved