Problem: Find the sum of all positive integers $n$ such that $n!+2$ divides $(2n)!$.
My approach: At first, I tried if at some point $n!+2 > (2n)!$. But $(2n)!$ grows massively. Then, I tried some values and got $2$ and $3$ works. Claim: There is no $n>3$ works. I tried to prove it but couldn't. Induction shouldn't work here because $1$ doesn't work and by domino effect, $2$ wouldn't work too.$n!|(2n)!$ and $n!+2|(2n)!$. GCD($n!,n!+2$)=$2$. So, $n!(n!+2)|2(2n)!$. I tried to bound it but it didn't work.
Conclusion: I think my claim is correct but I can't prove it. How can I? Any suggestions are appreciated.