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!)
A213639 G.f. satisfies: x = A( x - A(x)^3/x ). 1

%I #5 Jun 17 2012 00:06:23

%S 1,1,5,38,357,3832,45189,572378,7676653,107971691,1581714400,

%T 24012849880,376361077578,6071985730614,100602798234000,

%U 1708558136679750,29698002444820760,527661478169200755,9573199146196780335,177192815265794698364,3343432166097650920872

%N G.f. satisfies: x = A( x - A(x)^3/x ).

%F G.f. satisfies:

%F (1) A(x) = x + A(A(x))^3 / A(x).

%F (2) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) A(x)^(3*n)/x^n / n!.

%F (3) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) A(x)^(3*n)/x^(n+1) / n! ).

%e G.f.: A(x) = x + x^2 + 5*x^3 + 38*x^4 + 357*x^5 + 3832*x^6 + 45189*x^7 +...

%e Related series:

%e A(x)^3/x = x^2 + 3*x^3 + 18*x^4 + 145*x^5 + 1389*x^6 + 14967*x^7 +...

%e A(A(x)) = x + 2*x^2 + 12*x^3 + 102*x^4 + 1042*x^5 + 11977*x^6 + 149776*x^7 +...

%e A(A(x))^3/A(x) = x^2 + 5*x^3 + 38*x^4 + 357*x^5 + 3832*x^6 + 45189*x^7 + ...

%e The g.f. satisfies:

%e A(x) = x + A(x)^3/x + [d/dx A(x)^6/x^2]/2! + [d^2/dx^2 A(x)^9/x^3]/3! + [d^3/dx^3 A(x)^12/x^4]/4! +...

%e Logarithmic series:

%e log(A(x)/x) = A(x)^3/x^2 + [d/dx A(x)^6/x^3]/2! + [d^2/dx^2 A(x)^9/x^4]/3! + [d^3/dx^3 A(x)^12/x^5]/4! +...

%o (PARI) {a(n)=local(A=x); if(n<1, 0, for(i=1, n, A=serreverse(x - A^3/x+x*O(x^n))); polcoeff(A, n))}

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

%o {a(n)=local(A=x+x^2+x*O(x^n)); for(i=1, n, A=x+sum(m=1, n, Dx(m-1, A^(3*m)/x^m)/m!)+x*O(x^n)); polcoeff(A, n)}

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

%o {a(n)=local(A=x+x^2+x*O(x^n)); for(i=1, n, A=x*exp(sum(m=1, n, Dx(m-1, A^(3*m)/x^(m+1))/m!)+x*O(x^n))); polcoeff(A, n)}

%o for(n=1, 21, print1(a(n), ", "))

%Y Cf. A213591.

%K nonn

%O 1,3

%A _Paul D. Hanna_, Jun 16 2012

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)