We are given a sequence made up of pairs of numbers, $(1, 2), (3, 4), …,(x, x+1)$, out of which we must remove one pair. The sum of the numbers which have not been removed is 156. Calculate the sum of the removed numbers.
This is what I got so far:
$(1+2)+(3+4)+(5+6)+...=3+7+11+...$ forms an arithmetic series. Let $S_n$ be the sum of the terms in this series up until the $n^{th}$ term. Let $n$ be the number of pairs.
$S_n=\dfrac{n}{2}(2(3)+(n-1)(4))=n(2n+1)=156+y$, where $y$ is the sum of the removed pair.
Let $y$ be the $a^{th}$ term on the arithmetic series.
$y=3+(a-1)(4)=4a-1$
$\therefore n(2n+1)=156+4a-1 \Rightarrow n(2n+1)=155+4a \Rightarrow a=\dfrac{n(2n+1)-155}{4}$
Since the sum of the numbers is even after $y$ is removed, $n$ must be odd. $a$ must be a positive integer, so $n(2n+1)-155$ must be divisible by 4. Now I'm stuck. The smallest $a$ I found was $4$, which gives $y=15$ and is the correct answer, but I can't understand why it must be the smallest $a$.
Or maybe there is another way of solving this question?