OFFSET
1,2
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
EXAMPLE
Number 30 is in sequence because 30 is divisible by the product of factorials 3!*0! = 6.
MATHEMATICA
Select[Range[2200], Divisible[#, Times@@(IntegerDigits[#]!)]&] (* Harvey P. Dale, May 24 2017 *)
PROG
(Haskell)
import Data.List (elemIndices)
a188264 n = a188264_list !! (n-1)
a188264_list =
map (+ 1) $ elemIndices 0 $ zipWith mod [1..] $ map a066459 [1..]
-- Reinhard Zumkeller, Oct 11 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Mar 25 2011
STATUS
approved