today i was reading about pascal's triangle. the website pointed out that the 3th diagonal row were the triangular numbers. which can be easily expressed by the following formula.
$$\sum_{i=0}^n i = \frac{n(n+1)}{2}$$
i wondered if the following rows could be expressed with such a simple formula. when trying to find the sum for the 3th row i used a method called "differences" i found on this site: http://www.trans4mind.com/personal_development/mathematics/series/sumNaturalSquares.htm
lets call $P_r$ the $r^{th}$ row of pascals triangle. The result for the 4th row was $$\sum_{i=0}^n P_3 = \frac{n(n+1)(n+2)}{6}$$ and the result for 4th row was $$\sum_{i=0}^n P_4 = \frac{n(n+1)(n+2)(n+3)}{24}$$ i guessed the sum of the 5th row would be $$\sum_{i=0}^n P_5 = \frac{n(n+1)(n+2)(n+3)(n+4)}{120}$$ i plotted the function and looking at the graph it seems to be correct. it looks like the the sum of each row is: $$\sum_{i=0}^n P_r = \frac{(n + 0)\cdots(n+(r-1))}{r!}$$
is this true for all rows? and why? i think this has something to do with combinatorics/probability which i never studied.
thanks in advance
edit image for $P_r$: https://i.stack.imgur.com/3BdRn.png