The question is to find all natural numbers $n$, such that $(n+1)(n+12)$ can be written as a product of $4$ consecutive numbers.
My approach was the following: starting from the remark that if you add 1 to a product of four consecutive integers you receive a perfect square, I can write: $(n+1)(n+12)+1=k^2$, with $k \in \mathbb{N}$. Then, $n^2+13n+13=k^2 \iff 13(n+1)=k^2-n^2=(k-n)(k+n)$. Now, because $13$ is a prime, could I perhaps use the following logic: we might have two cases, either $k-n$ or $k+n$ should be 13(or 1?), and the other should be $n+1$. Solving for $n$ will give us $n=4$(I have however only considered the case where both $k-n, k+n$ are equal to 13, not 1. Is this approach correct, or could it be turned into a correct one?