What is the relationship between Pascal's sequence and the binomial theorem? I want to have a thorough and intuitive understanding of the connections between the two.
Though I am able to relate to the fact that:
$(x+y)^n = \left(\begin{array}{c}n\\ 0\end{array}\right)x^n+\left(\begin{array}{c}n\\ 1\end{array}\right)x^{n-1}y+\left(\begin{array}{c}n\\ 2\end{array}\right)x^{n-2}y^2+.....+\left(\begin{array}{c}n\\ n\end{array}\right)y^n$
And $\left(\begin{array}{c}n\\ 0\end{array}\right)$ is the first element from the Pascal sequence. But can someone help me by giving an intuitive description of the relationship between the two? I want to be able to thoroughly understand the connections.
Thanks in advance.


To get from the $n$th to the $(n+1)$st row, you add adjacent coefficients. This corresponds to the identity ${n+1\choose k}={n\choose k}+{n\choose k-1}$.
Intuitively, this identity just says that if you take one element out, you can count $k$ element subsets with and without that element, then combine to get all $k$ element subsets...