A223080 Numbers n with distinct digits such that the reversal of n divides n.
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20, 30, 40, 50, 60, 70, 80, 90, 510, 540, 810, 5610, 5940, 8712, 8910, 9801, 65340, 87120, 87912, 659340, 879120
Offset: 1
Examples
8712 reversed is 2178, which divides 8712.
Programs
-
Mathematica
Select[Range[10^6],Max[DigitCount[#]]==1&&Divisible[#,IntegerReverse[#]]&] (* Harvey P. Dale, Jun 21 2022 *)
Comments