A185755
Triangle: T(n,k) equals the coefficient of x^n*y^k in the n-th iteration of x*(1+xy)/(1-x), for n>=1, 0<=k
1, 2, 2, 9, 15, 6, 64, 154, 120, 30, 625, 1995, 2340, 1190, 220, 7776, 31191, 49315, 38325, 14595, 2170, 117649, 571221, 1142932, 1204588, 704102, 215950, 27076, 2097152, 11992688, 29141994, 38972388, 30945432, 14570976, 3761310, 409836
Offset: 1
Examples
Triangle begins: 1; 2, 2; 9, 15, 6; 64, 154, 120, 30; 625, 1995, 2340, 1190, 220; 7776, 31191, 49315, 38325, 14595, 2170; 117649, 571221, 1142932, 1204588, 704102, 215950, 27076; 2097152, 11992688, 29141994, 38972388, 30945432, 14570976, 3761310, 409836; 43046721, 283976517, 814059798, 1323693384, 1334427720, 853356072, 337738758, 75550188, 7303164; ...
Crossrefs
Programs
-
PARI
{T(n,k)=local(A=x, G=x*(1+x*y)/(1-x)); for(i=1, n, A=subst(G, x, A+x*O(x^n)));polcoeff(polcoeff(A, n,x),k,y)}