OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 25*x^4 + 138*x^5 + 1036*x^6 +...
where
A(x) = 1 + x*A(x) + x^2*A(x)^3 + x^3*A(x)^9 + x^4*A(x)^27 + x^5*A(x)^81 +...
Related expansions begin:
A(x)^3 = 1 + 3*x + 9*x^2 + 31*x^3 + 129*x^4 + 666*x^5 + 4499*x^6 +...
A(x)^9 = 1 + 9*x + 54*x^2 + 282*x^3 + 1431*x^4 + 7560*x^5 + 44568*x^6 +...
A(x)^27 = 1 + 27*x + 405*x^2 + 4491*x^3 + 41391*x^4 + 338580*x^5 + 2571669*x^6 +...
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(k=1, n, A=1+sum(j=1, n, x^j*A^(3^(j-1)))); polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 13 2011
STATUS
approved