The problem is "Can you find a value $n$ such that $n^2+1$ is divisible by $3$?"
My analysis: For the divisibility of $n^2+1$ by $3$, we need $n^2 \equiv 2 \pmod{3}$ in other words we need to show that $2$ is quadratic residue of $3$, but $2 \equiv -1 \pmod 3$ which imply that $2$ is quadratic non residue of $3$.Hence, no such $n$ is possible.
I recently learned about quadratic residue and this is probably my first application, so please check if I committed an error?
Thanks,