login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Row sums of triangle A166900.
1

%I #2 Mar 30 2012 18:37:18

%S 1,2,7,40,321,3361,43667,679806,12358885,257281501,6039232167,

%T 157879127902,4550258562799,143367509714352,4903128661348411,

%U 180907738215049666,7163333648262397913,303006716530386750233

%N Row sums of triangle A166900.

%C Triangle A166900 transforms rows into diagonals in the table of coefficients of successive iterations of x+x^2 (cf. A122888).

%o (PARI) {a(n)=local(F=x, M, N, P); M=matrix(n+2, n+2, r, c, F=x;for(i=1, r+c-2, F=subst(F, x, x+x^2+x*O(x^(n+2)))); polcoeff(F, c)); N=matrix(n+1, n+1, r, c, F=x;for(i=1, r, F=subst(F, x, x+x^2+x*O(x^(n+3)))); polcoeff(F, c)); P=matrix(n+1, n+1, r, c, M[r+1, c]); M=(P~*N~^-1); sum(k=1,n+1,M[n+1,k])}

%Y Cf. A166900, A166901, A166902, A166903, A122888, A135080.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Nov 27 2009