OFFSET
1,2
COMMENTS
No other terms < 100000.
Conjecture: these 6 terms are the only terms of the sequence, i.e., there are no terms larger than 57.
EXAMPLE
48! = 12413915592536072670862289047373375038521486354677760000000000 has 48 nonzero decimal digits, so 48 is a term.
MAPLE
q:= n-> nops(subs(0=NULL, convert(n!, base, 10)))=n:
select(q, [$0..100])[]; # Alois P. Heinz, Feb 07 2020
PROG
(Python)
A332242_list, i, n = [], 0, 1
while i < 1000:
s = str(n)
if len(s) - s.count('0') == i:
A332242_list.append(i)
i += 1
n *= i
(PARI) isok(k) = #select(x->(x != 0), digits(k!)) == k; \\ Michel Marcus, Feb 08 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Chai Wah Wu, Feb 07 2020
STATUS
approved