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!)
A119470 G.f. A(x) equals the limit of the composition of functions (x+x^n); let F_1(x) = x, F_{n+1}(x) = F_n(x+x^(n+1)), then A(x) = limit F_n(x): A(x) = x o x+x^2 o x+x^3 o ... o x+x^n o... 7
1, 1, 1, 3, 3, 7, 14, 19, 37, 70, 128, 195, 382, 671, 1188, 2143, 3550, 6519, 11544, 20263, 35316, 62302, 108272, 191277, 336749, 583438, 1022109, 1784180, 3115162, 5411730, 9454962, 16420712, 28558546, 49616719, 86004273, 149312549 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
G.f.: A(x) is the limit of the composition of functions (x+x^n):
F_3(x) = x o x+x^2 o x+x^3 = x + x^2 + x^3 + 2*x^4 + x^6;
F_4(x) = F_3(x+x^4) = x + x^2 + x^3 + 3*x^4 + 2*x^5 + 4*x^6 +...
F_5(x) = F_4(x+x^5) = x + x^2 + x^3 + 3*x^4 + 3*x^5 + 6*x^6 +...
F_6(x) = F_5(x+x^6) = x + x^2 + x^3 + 3*x^4 + 3*x^5 + 7*x^6 +...
F_7(x) = x o x+x^2 o x+x^3 o x+x^4 o x+x^5 o x+x^6 o x+x^7 =
x + x^2 + x^3 + 3*x^4 + 3*x^5 + 7*x^6 + 14*x^7 + 18*x^8 +...
PROG
(PARI) {a(n)=local(F=x); if(n<1, 0, for(k=2, n, F=subst(F, x, x+x^k+x*O(x^n)); ); return(polcoeff(F, n)))}
for(n=1, 60, print1(a(n), ", "))
CROSSREFS
Sequence in context: A230017 A134346 A049772 * A060368 A218206 A218233
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 22 2006
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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)