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!)
A163133 G.f. A(x) equals the composition of functions x*(1 + a(n)*x^n); let F_1(x) = x, F_{n+1}(x) = x*(1 + a(n)*F_n(x)^n), then A(x) = limit F_n(x): A(x) = ...o x*(1+a(n)*x^n) o...o x*(1+a(2)*x^2) o x*(1+a(1)*x). 0
1, 1, 1, 4, 11, 42, 196, 988, 5314, 30724, 189962, 1244264, 8583042, 62112639, 469917193, 3707053139, 30421506639, 259182853643, 2288352779166, 20904648990227, 197305045507448, 1921509079008868, 19285642292478101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
G.f.: A(x) = x + x^2 + x^3 + 4*x^4 + 11*x^5 + 42*x^6 + 196*x^7 +...
A(x) = ...o x*(1+11*x^5) o x*(1+4*x^4) o x*(1+x^3) o x*(1+x^2) o x*(1+x).
PROG
(PARI) {a(n)=local(F=x); if(n<1, 0, for(k=2, n, F=subst(x+a(k-1)*x^k +x*O(x^n), x, F); ); return(polcoeff(F, n)))}
CROSSREFS
Cf. A119472 (variant).
Sequence in context: A149277 A149278 A176645 * A176574 A323792 A241584
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 10 2009
STATUS
approved

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 September 1 05:33 EDT 2024. Contains 375575 sequences. (Running on oeis4.)