cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A119820 Coefficients of x^n in the n-th iteration of x*(1+x)^2 for n>=1.

This page as a plain text file.
%I A119820 #5 Aug 27 2013 02:02:37
%S A119820 1,4,27,300,4790,101010,2660028,84191772,3115739358,132074618544,
%T A119820 6311492388432,335744715016854,19678501474466211,1260060524755139120,
%U A119820 87519840721085385096,6553840567691077634748,526360263009035464610574
%N A119820 Coefficients of x^n in the n-th iteration of x*(1+x)^2 for n>=1.
%F A119820 a(n) = [x^n] F_n(x) where F_n(x) = F_{n-1}(F_1(x)) with F_1(x) = x*(1+x)^2.
%e A119820 The successive iterations of F(x) = x*(1+x)^2 begin:
%e A119820 F(x) = (1)x + 2x^2 + x^3
%e A119820 F(F(x)) = x + (4)x^2 + 10x^3 + 18x^4 + 23x^5 + 22x^6 + 15x^7 + 6x^8 +...
%e A119820 F(F(F(x))) = x + 6x^2 + (27)x^3 + 102x^4 + 333x^5 + 960x^6 + 2472x^7 +...
%e A119820 F(F(F(F(x)))) = x + 8x^2 + 52x^3 + (300)x^4 + 1578x^5 + 7692x^6 +...
%e A119820 F(F(F(F(F(x))))) = x + 10x^2 + 85x^3 + 660x^4 + (4790)x^5 + 32920x^6+...
%e A119820 F(F(F(F(F(F(x)))))) = x + 12x^2 +126x^3 +1230x^4+11385x^5+(101010)x^6+...
%o A119820 (PARI) {a(n)=local(F=x*(1+x)^2, G=x+x*O(x^n)); if(n<1, 0, for(i=1, n, G=subst(F, x, G)); return(polcoeff(G, n, x)))}
%Y A119820 Cf. A119821, A112317, A119819, A119817, A119815.
%K A119820 nonn
%O A119820 1,2
%A A119820 _Paul D. Hanna_, Jun 01 2006