I've been lately working on a problem I still can't solve. The problem is:
Can we divide numbers from 1 to 99 into 33 groups of three numbers, such that in every group one number is the sum of the two remaining elements?
Thank you in advance for any help or indication :)
If it works for $n$ then it works for $4n$ and $4n+3$. This can be seen as follows: assume it works for $n$, then it works for the even numbers until $2n$ (just multiply everything by 2).
Now we take following combinations: $(2n+1)+(2n+2)=4n+3$, $(2n-1)+(2n+3)=4n+2$, $(2n-3)+(2n+4)=4n+1$, $\ldots$, $1+(3n+2)=3n+3$.
The only numbers we did not use are the even numbers until $2n$.
An analogous argument shows that it works for $4n$ if it works for $n$.
user7530 has shown that it works for $n=24$ in another answer, so we have an affirmative answer, since $99=4*24+3$.
(Thanks for showing the error in my previous answer, Dennis. I hope this one makes more sense.)