Here is another point of view that I will express through 2 examples :
Case $3 \times 3$
$$\left(\begin{array}{rrr}1&7&21\\1&8&28\\1&9&36\end{array}\right)=
\left(\begin{array}{rrr}0&1&0\\0&0&1\\1&-3&3\end{array}\right)
\left(\begin{array}{rrr}1&6&15\\1&7&21\\1&8&28\end{array}\right)$$
More generally, denoting by $R_k$ the $3$ first entries of the $k$th row of Pascal's triangle that we are concerned with, we have :
$$\underbrace{\left(\begin{array}{r}R_{k+1}\\R_{k+2}\\R_{k+3}\end{array}\right)}_{M_{k+1}}=
\underbrace{\left(\begin{array}{rrr}0&1&0\\0&0&1\\1&-3&3\end{array}\right)}_{L_3}
\underbrace{\left(\begin{array}{rrr}R_{k}\\R_{k+1}\\R_{k+2}\end{array}\right)}_{M_{k}}$$
which is valid for any $k>1$ with the same matrix $L_3$ where you have may have recognized the coefficients of the $3$rd row of Pascal's triangle (minus the first one) : $1,3,3,1$ with alternated signs.
Taking the determinant on both sides, as the determinant of $L_3$ is $1$, we get :
$$\det(M_{k+1})=\det(M_{k})$$
therefore the result is proven by an immediate recurrence reasoning, knowing that the initial determinant is :
$$\det M_2 = \det \pmatrix{1&2&1\\1&3&3\\1&4&6} = 1$$
Case $4 \times 4$
$$\left(\begin{array}{rrrr}1&6&15&20\\1&7&21&35\\1&8&28&56\\1&9&36&84\end{array}\right)=
\left(\begin{array}{rrrr}0&1&0&0\\0&0&1&0\\0&0&0&1\\-1&4&-6&4\end{array}\right)
\left(\begin{array}{rrrr}1&5&10&10\\1&6&15&20\\1&7&21&35\\1&8&28&56\end{array}\right)$$
which can be generalized in the same way as in the first case ; for any $k>2$ :
$$\underbrace{\left(\begin{array}{r}R_{k+1}\\R_{k+2}\\R_{k+3}\\R_{k+4}\end{array}\right)}_{M_{k+1}}=
\underbrace{\left(\begin{array}{rrr}0&1&0&0\\0&0&1&0\\0&0&0&1\\-1&4&-6&4\end{array}\right)}_{L_4}
\underbrace{\left(\begin{array}{rrr}R_{k}\\R_{k+1}\\R_{k+2}\\R_{k+3}\end{array}\right)}_{M_{k}}$$
Here, coefficients $1,4,6,4,(1)$ with an alternated signs are the elements of the $4$th row of Pascal's triangle.
Etc.
Of course, a rigorous treatment is possible if needed, but I think I have conveyed the main ideas by presenting these 2 examples.
Remarks :
- The underlying reason for the alternate sign binomial coefficients is that the inverse of any Pascal matrix such as :
$$P_4=\pmatrix{ 1 &0 &0 &0 & 0\\
1&1& 0& 0 & 0\\
1 &2 & 1& 0 & 0\\
1 & 3 &3 & 1& 0\\
1 &4 & 6 &4 & 1} \ \text{is} $$ $$P_4^{-1}=\left(\begin{array}{rrrrr}1 &0 &0 &0 & 0\\
-1&1& 0& 0 & 0\\
1 &-2 & 1& 0 & 0\\
-1 & 3 &-3 & 1& 0\\
1 &-4 & 6 &-4 & 1\end{array}\right)$$
- Matrices similar to matrices $L_k$ are often met in linear algebra in particular as companion matrices of more generally as "Leslie matrices".