A090054 Numbers n which divide the number formed when their digits are sorted in descending order excluding trivial cases.
1750842, 15922035, 17508420, 19750842
Offset: 1
Examples
a(1)=1750842 because the digits of 1750842 in descending order are 8754210 which is divisible by 1750842. a(24)=3105 because the digits of 3105 in ascending order are 135 and 3105 is divisible by 135.
Links
- C. Seggelin, Numbers Divisible by Digit Permutations.
Programs
-
Mathematica
sdoQ[n_] := Module[{rs = FromDigits[ReverseSort[ IntegerDigits[n]]]}, rs != n && Divisible[rs, n]]; Select[Range[198*10^5],sdoQ] (* Harvey P. Dale, Sep 15 2021 *)
Comments