OFFSET
0,2
COMMENTS
T=A179430 is a triangular matrix where column 0 of T^m equals C(m*3^(n-1), n) at row n for n>=0, m>=0.
EXAMPLE
G.f.: A(x) = 1 + 9*x + 405*x^2 + 121500*x^3 + 247203171*x^4 +...
PROG
(PARI) {a(n)=local(M=matrix(n+2, n+2, r, c, binomial(r*3^(c-2), c-1)), P); P=matrix(n+2, n+2, r, c, binomial((r+1)*3^(c-2), c-1)); (P~*M~^-1)[n+2, 2]}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 21 2010
STATUS
approved