[go: up one dir, main page]

login
A223080
Numbers n with distinct digits such that the reversal of n divides n.
3
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,2
COMMENTS
Suggested by A214927.
There are no terms with 7 digits.
Sequence is complete. - Giovanni Resta, Mar 20 2013
EXAMPLE
8712 reversed is 2178, which divides 8712.
MATHEMATICA
Select[Range[10^6], Max[DigitCount[#]]==1&&Divisible[#, IntegerReverse[#]]&] (* Harvey P. Dale, Jun 21 2022 *)
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
N. J. A. Sloane, Mar 20 2013
STATUS
approved