The triangle numbers are 1,3,6,10,etc... The nth triangle number is formed by the following sum: $T_n=\sum_{i=1}^n i=1+2+3+...+n$. I want to try and derive the general formula for the nth triangle number in the following manner.
Form a rectangle from squares with the shorter side being n units long and the longer side being n+1 units long. The area of the rectangle will be $n(n+1)$. Now cut the rectangle along one of its diagonals while following the path of the boundaries of the squares, which should give you a staircase shape. Since the rectangle has been effectively cut in half, you have essentially made a "triangle". Sure the shape isn't truly triangular, but the amount of squares that make it up is the same as the nth triangular number, since you take a side away from the longer side of the rectangle. The amount of squares that make it up can then be formulated as $n(n+1)/2$, which is the general formula if you look it up.
Is this sound logic?