The factorial function grows in length in digits faster and faster. For example, early on it is multiplied by tens, so grows one or two digits each time. Then in the hundreds it grows two or three digits at a time, and so on. But the hundreds go on for longer than the tens, and the thousands go on longer still. Sorry for the quality of my description, but I hope you get what I mean.
Is the growth in length in digits of the factorial function exponential? Or something sub-exponential?
Please note, I am not talking about the growth in value of the factorial, but its growth in length in decimal digits. So 7! = 5040 which has 4 digits.
By Stirling's approximation, we have $$ \ln(n!) \approx n \ln(n) - n $$ In particular, the number of digits in $n!$ is given by $\lfloor \log_{10}(n!) \rfloor$, and we have $$ \lfloor \log_{10}(n!) \rfloor = \left\lfloor\frac 1{\ln(10)}\ln(n!) \right\rfloor \approx \frac 1{\ln(10)}\left(n \ln(n) - n\right) = O(n \ln(n)) $$ So, the growth of the number of digits is subexponential, and faster than linear growth.