OFFSET
1,1
COMMENTS
A property of this sequence: the arithmetic mean s(x) = (1/x) *Sum_{k = 1..x} a(k) is very slowly decreasing when x increases. For example, s(100) = 30.89; s(1000) = 29.795 ; s(10000) = 28.1319 ; s(100000) = 26.53411. For almost all n, a(n) = 0 (see A204598).
EXAMPLE
a(2) = 30 because 2*30!! = 2* 42849873690624000 = 85699747381248000 contains every digit at least once.
MATHEMATICA
Table[k=1; While[!Length[Union[IntegerDigits[n*k!!]]]==10, k++]; k, {n, 1, 60}]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Jan 17 2012
STATUS
approved