Find the smallest integer $a > 2$ such that $2|a, 3|a + 1, 4|a + 2, 5|a + 3, 6|a + 4$
The question is from David Burton's book on Number Theory. The solution which I have found is like this:
Since $2|a$ is equivalent to $4|a + 2$ and $6|a + 4$ is equivalent to $3|a + 1$, so the given problem reduces in finding the smallest integer $a > 2$ such that $3|a + 1, 4|a + 2, 5|a + 3$. Thus, we have to find the least value of $a > 2$ such that $a \equiv 2 \mod 4$, $a \equiv 2 \mod 5$ and $a \equiv 2 \mod 6$. Since 4 and 6 are not co-prime, so Chinese Remainder Theorem is not applicable. However, we observe that $a = 62$ serves as a solution. This is the smallest solution because $a \equiv 2 \mod 6$ implies that if $2 < a < 62$, then possible values for $a$ are 8, 14, 20, 26, 32, 38, 44, 50 and 56. But $8 \not \equiv 2 \mod 5$, $14 \not \equiv 2 \mod 5$, $20 \not \equiv 2 \mod 5$, $26 \not \equiv 2 \mod 5$, $32 \not \equiv 2 \mod 4$, $38 \not \equiv 2 \mod 5$, $44 \not \equiv 2 \mod 5$, $50 \not \equiv 2 \mod 5$, and $56 \not \equiv 2 \mod 5$. Thus, the desired least value of $a$ is 62.