A337741 Numbers all of whose divisors are Niven numbers (A005349).
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 20, 21, 24, 27, 36, 40, 54, 63, 72, 81, 108, 162, 216, 243, 324, 486, 648, 972, 1944
Offset: 1
Examples
6 is a term since all the divisors of 6, i.e., 1, 2, 3 and 6, are Niven numbers.
Crossrefs
Programs
-
Mathematica
nivenQ[n_] := Divisible[n, Plus @@ IntegerDigits[n]]; allQ[n_] := AllTrue[Divisors[n], nivenQ]; p = {1, 2, 3, 5, 7}; s = {1}; n = 0; While[Length[s] != n, n = Length[s]; s = Select[Union @ Flatten @ Outer[Times, s, p], allQ]]; s
Comments