OFFSET
0,3
COMMENTS
The composition transpose of A136750.
EXAMPLE
G.f.: A(x) is the limit of composition of functions x/(1-x^n):
F_1(x) = x/(1-x)
F_2(x) = x/(1-x^2) o F_1(x) = x + x^2 + 2x^3 + 4x^4 + 8x^5 + 16x^6 +...
F_3(x) = x/(1-x^3) o F_2(x) = x + x^2 + 2x^3 + 5x^4 + 12x^5 + 30x^6 +...
F_4(x) = x/(1-x^4) o F_3(x) = x + x^2 + 2x^3 + 5x^4 + 13x^5 + 35x^6 +...
F_5(x) = x/(1-x^5) o F_4(x) = x + x^2 + 2x^3 + 5x^4 + 13x^5 + 36x^6 +...
F_6(x) = x/(1-x^6) o x/(1-x^5) o x/(1-x^4) o x/(1-x^3) o x/(1-x^2) o x/(1-x) =
x + x^2 + 2*x^3 + 5*x^4 + 13*x^5 + 36*x^6 + 104*x^7 + 309*x^8 + 934*x^9 + ...
PROG
(PARI) {a(n)=local(A=x+x*O(x^n)); if(n<=0, 0, for(i=1, n, A=A/(1-A^i)); polcoeff(A, n))}
for(n=1, 40, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 21 2008
STATUS
approved