Just found this topic in my "View your posts," know it's old but wanted to say thanks for your help, guys. However, I figured out a simpler way to get what I was looking for, and you're all gonna laugh at me for how moronic I was.
4C4 + 4C3 + 4C2 + 4C1 = 2^4
"(nCr) + (nC(r-1)) + (nC(r-2)) etc. while r > 0 and where the initial r = n" is the exact same thing as "2^n"
And I shoulda known that, because I'm always thinking in terms of bits and bytes because when I design my videogames for fun, I try to make them as computationally efficient as possible, so I'm always fussing over getting as much out of each individual bit as possible.
I did not know that 5 + 4 + 3 + 2 + 1 or whatever were "triangular numbers," though. That's useful, thanks.
mr-mitch wrote:You can, of course, extend this to the sum of any arithmetic series/progression, starting at a and ending at b with a constant step d.
The idea is sum twice as much, and then divide by two.
4 + 7 + 10 + 13
13 + 10 + 7 + 4
Each pair adds up to 17, and you have four pairs.
Hence the total is 17x4/2 = 34.
In general, it's [(b-a+d)/d] . [(a+b) / 2]
Or, if you know your starting point a, the number of terms n, and the step size d:

"Sum twice as much then divide by two." Okay, lemme see if I can get your sequence from that.
Start with 4.
Twice 4 is 8.
Summed with 4 is 12.
Half of which is 6.
Hmm. Lost. If I divided that 6 again, I'd get 3, which fits the sequence (4 + 3 = 7). Lemme keep going with that.
7.
Twice is 14.
Added to 7 is 21.
Half of which is 10.5.
Another half of which is 5.25.
No, I'm lost. Wait, what numbers are a, b and d above? Can you explain how you got that sequence of numbers (4 + 7 + 10 + 13) from [(b-a+d)/d] . [(a+b) / 2]?