For every $n\geq 1$, $n!+1$ and $(n+1)!+1$ are coprime. I suspected the same would happen for $n!+1$ and $(n+2)!+1$, but short Python script yielded 3 counterexamples:
- $\gcd(7!+1,9!+1)=71$
- $\gcd(16!+1,18!+1)=61$
- $\gcd(61!+1,63!+1)=71$
But up to $n=30000$ it finds no more counterexamples.
So it could be that $7$, $16$ and $61$ are the only ones or that Python is hallucinating (does it really handle numbers as large as $30000!$?).
Which is it?
Edit: as discussed in the comment section, $$\gcd(n!+1,(n+2)!+1) = \gcd(n!+1,n^2+3n+1).$$ So considering $n^2+3n+1$ instead of $(n+2)!+1$ might simplify the problem.