OFFSET
0,11
FORMULA
Numerators of the matrix inverse of triangle A079901(n, k) = n^k.
EXAMPLE
These are the numerators of the triangle that begins:
1;
-1,1;
1/4,-1/2,1/4;
-1/108,1/18,-1/12,1/27;
-11/6912,1/576,1/192,-1/108,1/256;
-677/21600000,-61/360000,7/24000,1/2700,-1/1280,1/3125; ...
which equals the matrix inverse of triangle A079901(n,k)=n^k:
1;
1,1;
1,2,4;
1,3,9,27;
1,4,16,64,256;
1,5,25,125,625,3125; ...
PROG
(PARI) a(n, k)=numerator((matrix(n+1, n+1, r, c, if(r>=c, (r-1)^(c-1)))^-1)[n+1, k+1])
CROSSREFS
KEYWORD
AUTHOR
Paul D. Hanna, May 10 2005
STATUS
approved