|
| |
|
|
A051004
|
|
Numbers divisible both by their individual digits and by the sum of their digits.
|
|
0
| |
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, 111, 112, 126, 132, 135, 144, 162, 216, 222, 224, 264, 288, 312, 315, 324, 333, 336, 396, 432, 444, 448, 555, 612, 624, 648, 666, 735, 777, 864, 888, 936, 999, 1116, 1122, 1128, 1164, 1212, 1224, 1236, 1296, 1332
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
COMMENTS
| No zero digits permitted. [Harvey P. Dale, Dec 18 2011]
|
|
|
LINKS
| Eric Weisstein's World of Mathematics, Source
|
|
|
MATHEMATICA
| ddQ[n_]:=Module[{idn=IntegerDigits[n]}, !MemberQ[idn, 0] && Divisible[ n, Total[idn]]&&And@@Divisible[n, idn]]; Select[Range[1400], ddQ] (* From Harvey P. Dale, Dec 18 2011 *)
|
|
|
CROSSREFS
| Cf. A005349, A034838, A038369.
Sequence in context: A059043 A138141 A001102 * A032575 A038186 A118575
Adjacent sequences: A051001 A051002 A051003 * A051005 A051006 A051007
|
|
|
KEYWORD
| nonn,nice,base
|
|
|
AUTHOR
| Eric Weisstein (eric(AT)weisstein.com)
|
| |
|
|