login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A229112 Row sums of triangle A166884. 1

%I #3 Sep 13 2013 18:52:40

%S 1,2,6,28,199,1945,24284,369007,6606841,136189033,3176299055,

%T 82687352399,2376681846391,74755785129007,2554042404290937,

%U 94185081322401217,3728691027764891142,157729043279607820306,7100056927514281702122,338867203461763515919479

%N Row sums of triangle A166884.

%C Triangle A166884 transforms diagonals in the table of coefficients of successive iterations of x+x^2+x^3 (cf. A166880).

%e Triangle A166884 begins:

%e 1;

%e 1, 1;

%e 3, 2, 1;

%e 15, 9, 3, 1;

%e 114, 62, 18, 4, 1;

%e 1159, 593, 157, 30, 5, 1;

%e 14838, 7266, 1812, 316, 45, 6, 1;

%e 229401, 108720, 25989, 4271, 555, 63, 7, 1; ...

%e of which the row sums form this sequence.

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

%o for(n=0, 25, print1(a(n), ", "))

%Y Cf. A166884.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Sep 13 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 29 17:08 EDT 2024. Contains 373855 sequences. (Running on oeis4.)