I just investigated the following matrix and some of its lower powers: $${\bf M} = \left[\begin{array}{cccc} 1&0&0&0\\ 1&1&0&0\\ 1&1&1&0\\ 1&1&1&1 \end{array}\right] , {\bf M}^2 = \left[\begin{array}{cccc} 1&0&0&0\\ 2&1&0&0\\ 3&2&1&0\\ 4&3&2&1 \end{array}\right], \\{\bf M}^3 = \left[\begin{array}{cccc} 1&0&0&0\\ 3&1&0&0\\ 6&3&1&0\\ 10&6&3&1 \end{array}\right] , {\bf M}^4 = \left[\begin{array}{cccc} 1&0&0&0\\ 4&1&0&0\\ 10&4&1&0\\ 20&10&4&1 \end{array}\right] $$
As a function of the exponents, indices (1,1) seem to be constant 1, (2,1) seem to be linear function, (3,1) seem to be arithmetic sum and the fourth one seems to be sums of arithmetic sums. I have some faint memory that these should be polynomials of increasing order (well I know it for sure up to the arithmetic sum), but I can't seem to remember what they were called or how to calculate them. Does it make sense to do polynomial regression or is that uneccessary? This is following the train of thought from matrix representation of generating element for parabola, maybe you can see what I'm jabbing away at.
So the question is: is there an easy way to linearly combine the first columns of these matrices to generate the first 4 monomials? I can always do a linear regression with monomial basis functions, but that would be a little silly if this is already a well known way to do it.