This problem is basically equivalent to the nontrivial case of the problem of finding a product of two factorials that is also a factorial, but that problem seems to be open as well. The keyword here is seems: I have no idea whether it has any solution yet. Thanks in advance for any help!
Sorry, I meant numbers. I am just extremely, extremely sorry.
The factorial of the number is equal to consecutive digits, greater than the number. So $n\leq8$. We have to check those 8 cases
for $n=1$, $n=2$ there aren't solutions
for $n=3$, $3!=6 \leq 4 * 5$
for $n=4$, $4!=24 \leq 5* 6$
for $n\geq5$, the product does to have divisble with 5. The digits are greater than the number, but there aren't any digits greater than 5 divisble with 5.
So, there aren't any solutions. If you didn't mean digits and you wanted to say numbers, we'll have to look for a different approach.