A068183 Largest number without decimal digits equal to 1 whose product of digits gives n!.
2, 32, 3222, 53222, 5332222, 75332222, 75332222222, 7533332222222, 755333322222222
Offset: 2
Formula
a(n)=Max{x; f[x]=n!}, where x has no digit=1 and f[x_] := Apply[Times, IntegerDigits[x]].
Comments