OFFSET
1,1
EXAMPLE
23 is in the sequence because 23! = 25852016738884976640000 contains every
digit at least once.
MAPLE
with(numtheory):Digits:=200:B:={0, 1, 2, 3, 4, 5, 6, 7, 8, 9}: T:=array(1..250) : for
p from 1 to 200 do:ind:=0:n:=p!:l:=length(n):n0:=n:s:=0:for m from 1 to l do:q:=n0:u:=irem(q, 10):v:=iquo(q, 10):n0:=v : T[m]:=u:od: A:=convert(T, set):z:=nops(A):if A intersect B = B and ind=0 then ind:=1: printf(`%d, `, p):else fi:od:
MATHEMATICA
Select[Range[101], Length[Union[IntegerDigits[#!]]] == 10 &]
PROG
(Magma) [n: n in [0..101] | Seqset(Intseq(Factorial(n))) eq {0..9}]; // Bruno Berselli, May 17 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Dec 31 2010
STATUS
approved