I am looking for a proof of the following:
Given an integer $n > 2$, $n$ cannot be both a factorial as well as a double factorial.
In more mathematical terms:
$$ \forall n \in \mathbb{Z} : n > 2,\ \nexists\ (i,j) : n = i!\ and\ n = j!!$$
I have been able to "show" that this is true by running a Python program that simply generates searches for equal factorials and double factorials in increasing order, but have not been able to come up with a sufficient proof myself.
I believe that the following formula for double factorials will help:
$$ 0!! = 1!! = 1,\ n!! = n!/\left((n-1)!!\right) \forall\ n > 1$$
I think it can be done both by induction and by contradiction. I would love to see both proofs!
If $j=2k$ then $j!!=2^kk!$ and if $2^kk!=n!$ then we have very many problems.
If $j=2k-1$ we also have problems because $j!!$ is odd.