OFFSET
1,2
EXAMPLE
23 is in the sequence because 2 and 3 are digits of 23! = 25852016738884976640000 ;
28 is not in the sequence because 2 is not a digit of 28! = 304888344611713860501504000000.
11 is not in the sequence because 11! = 39916800 contains only a single "1".
MATHEMATICA
Reap[Do[a = DigitCount[n!]; b = DigitCount[n]; If[Min[a-b] >= 0, Sow[n]], {n, 1, 10^3}]][[2, 1]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Dec 20 2010
STATUS
approved