Find a positive $n$ for which $\mu(n)+\mu(n+1)+\mu(n+2)=3$.
As $\mu(k) \leq 1$, we must have $\mu(n)=\mu(n+1)=\mu(n+2)=1$. Moreover, it is clear that $n \equiv 1 \pmod 4$ but I don't know where to start... Also, I wrote a Python program and it turns out that $n=869$ is the smallest answer. Any hint?
You found $n \equiv 1 \pmod{4}$. We also have $$ n \equiv 1,2,3,4,5,6 \pmod{9} $$ so by the chinese remainder theorem $$ n \equiv 1, 29, 21,13,5,33 \pmod{36} $$ Now, just start checking possibilities. In fact, one of the above integers ($n < 36$) works, so your program must have had an error.