OFFSET
1,2
COMMENTS
LINKS
EXAMPLE
The number 264 is a term of the sequence because it is divisible by the sum of its digits: 2+6+4=12; 264/12=22 and 22 is a palindrome.
MATHEMATICA
Select[Range[2000], PalindromeQ[# / Plus @@ IntegerDigits[#]] &] (* Amiram Eldar, Apr 28 2020 *)
PROG
(PARI) isok(m) = iferr(my(d=digits(m/sumdigits(m))); d==Vecrev(d), E, 0); \\ Michel Marcus, Apr 29 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Apr 28 2020
STATUS
approved