The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A166888 Triangle T(n,k), read by rows n>=0 with terms k=1..3^n, where row n lists the coefficients in the n-th iteration of x*(1+x)^2. 6

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

%S 1,1,2,1,1,4,10,18,23,22,15,6,1,1,6,27,102,333,960,2472,5748,12150,

%T 23388,40926,64872,92772,119216,137112,140526,127677,102150,71331,

%U 42954,21939,9288,3156,822,153,18,1,1,8,52,300,1578,7692,35094,150978

%N Triangle T(n,k), read by rows n>=0 with terms k=1..3^n, where row n lists the coefficients in the n-th iteration of x*(1+x)^2.

%e Triangle begins:

%e 1;

%e 1,2,1;

%e 1,4,10,18,23,22,15,6,1;

%e 1,6,27,102,333,960,2472,5748,12150,23388,40926,64872,92772,...;

%e 1,8,52,300,1578,7692,35094,150978,615939,2393628,8892054,...;

%e 1,10,85,660,4790,32920,215988,1360638,8265613,48585702,...;

%e 1,12,126,1230,11385,101010,864813,7178700,57976074,456783888,...;

%e 1,14,175,2058,23163,251832,2660028,27405798,276215313,...;

%e 1,16,232,3192,42308,544600,6842220,84191772,1017153322,...;

%e 1,18,297,4680,71388,1061712,15463512,221228244,3115739358,...;

%e 1,20,370,6570,113355,1912590,31683051,516686346,8311401351,...;

%e 1,22,451,8910,171545,3237520,60108576,1100544720,19906483168,...;

%e 1,24,540,11748,249678,5211492,107184066,2176952910,43733857365,...;

%e ...

%e The initial diagonals in this triangle begin:

%e A154256 = [1,2,10,102,1578,32920,864813,27405798,1017153322,...];

%e A119820 = [1,4,27,300,4790,101010,2660028,84191772,3115739358,...];

%e A166889 = [1,6,52,660,11385,251832,6842220,221228244,8311401351,...].

%e The diagonals are transformed one into the other by

%e triangle A166890, which begins:

%e 1;

%e 2,1;

%e 9,4,1;

%e 78,30,6,1;

%e 1038,364,63,8,1;

%e 18968,6233,986,108,10,1;

%e 443595,139008,20685,2072,165,12,1;

%e 12681960,3833052,545736,51494,3750,234,14,1; ...

%o (PARI) {T(n, k)=local(F=x+2*x^2+x^3, G=x+x*O(x^k)); if(n<0, 0, for(i=1, n, G=subst(F, x, G)); return(polcoeff(G, k, x)))}

%Y Cf. diagonals: A154256, A119820, A166889, variants: A166880, A122888.

%K nonn,tabf

%O 0,3

%A _Paul D. Hanna_, Nov 22 2009

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 11 16:25 EDT 2024. Contains 373315 sequences. (Running on oeis4.)