I know this is a tricky question, but I'm curious if factorial is truly considered a closed formula? We all know that:
$$ \prod_{i=1}^n i = n! $$
I've always considered the LHS to not be a closed formula and the RHS to be a closed formula. But from another viewpoint, is the exclamation point just a notation for the LHS? If this is the case, can we truly consider the RHS to be a closed formula? Moreover, it's just shorthand.
The same goes for a summation. In my head, I've always believed a closed formula did not include any iteration or recursion, even if it's finite. An example of iteration is Gauss' sum of consecutive integers from $1$ to $n$:
$$ \sum_{i=1}^n i = \frac{n \left( n + 1 \right)}{2} $$
Again, the LHS is not a closed formula, but the RHS is. An example of recursion is the Fibonacci sequence:
$$ F_n = F_{n-1} + F_{n-2} = \frac{1}{\sqrt{5}} \left( \varphi^n - \phi^n \right) $$
The middle is not a closed formula, but the RHS is. I know there are tons of examples, but these are just a few simple examples off the top of my head.
So, is factorial really a closed formula? If someone derived a formula that included a factorial, can we consider that to be a closed formula? In fact, are binomial coefficients closed formulas, since:
$$ \binom{n}{k} = \frac{n!}{k! \left( n - k \right)!} $$
Any insight to this will greatly be appreciated. Thank you!