OFFSET
0,3
FORMULA
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 20*x^4 + 72*x^5 + 274*x^6 +...
The g.f. satisfies:
A(x) = 1 + x*A(x) + x^2*A(x)^3 + x^3*A(x)^4 + x^4*A(x)^6 + x^5*A(x)^8 + x^6*A(x)^9 + x^7*A(x)^11 +...+ x^n*A(x)^A000201(n) +...
The g.f. of A186577, G(x) = A(x*G(x)), satisfies:
G(x) = 1 + x*G(x)^2 + x^2*G(x)^5 + x^3*G(x)^7 + x^4*G(x)^10 + x^5*G(x)^13 + x^6*G(x)^15 + x^7*G(x)^18 +...+ x^n*G(x)^A001950(n) +...
and begins:
G(x) = 1 + x + 3*x^2 + 13*x^3 + 65*x^4 + 353*x^5 + 2025*x^6 +...
Since A(x) = G(x/A(x)), then:
A(x) = 1 + x/A(x) + 3*x^2/A(x)^2 + 13*x^3/A(x)^3 + 65*x^4/A(x)^4 +...
PROG
(PARI) {a(n)=local(A=1+x, phi=(1+sqrt(5))/2); for(i=1, n, A=sum(m=0, n, x^m*(A+x*O(x^n))^floor(m*phi))); polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 24 2011
STATUS
approved