Problem: Find $n$ such that
- $n>200$
- $n$ can be written like the sum of of $5$, $6$, and $7$ consecutive integers
I'm currently studying modular arithmetic so I tried to solve witusoinh it. $$n=a+(a+1)+(a+2)+(a+3)+(a+4)$$ $$=b+(b+1)+(b+2)+(b+3)+(b+4)+(b+5)$$ $$=c+(c+1)+(c+2)+(c+3)+(c+4)+(c+5)+(c+6)$$ $$n=5a+10=6b+15=7c+21$$ So here comes the critical passage (that may be wrong) $$\begin{cases} n \mod 5 = 0 \\ n - 3 \mod 6 = 0 \\ n \mod 7 = 0 \end{cases}$$ And so I have that $n=5 \cdot (6+3) \cdot7=315$ that satisfies all the previous conditions. Also we have that $a=61$, $b=50$ and $c=42$
Is this proof correct?
Addendum
Is $315$ the SMALLEST number possible greater than $200$?