Question: How to construct such a matrix

Given an n*n matrix M an its rth row and cth column element m[r,c].Suppose m[r,c] = c*m[r-1,c]+a*m[r-1,c-1] and m[0,0]=1, m[0,k]=m[l,0]=0 for k>0,l>0.The letter "a" denotes a constant number and n can be any non negtive integer.

Please Wait...