OFFSET
1,2
COMMENTS
No zero digits permitted. [Harvey P. Dale, Dec 18 2011]
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Digit
MATHEMATICA
ddQ[n_]:=Module[{idn=IntegerDigits[n]}, !MemberQ[idn, 0] && Divisible[ n, Total[idn]]&& And @@ Divisible[n, idn]]; Select[Range[1400], ddQ] (* Harvey P. Dale, Dec 18 2011 *)
PROG
(Haskell)
a051004 n = a051004_list !! (n-1)
a051004_list = [x | x <- a005349_list,
x == head (dropWhile (< x) a034838_list)]
-- Reinhard Zumkeller, Mar 03 2012
CROSSREFS
KEYWORD
nonn,nice,base
AUTHOR
EXTENSIONS
Offset corrected by Reinhard Zumkeller, Mar 03 2012
STATUS
approved