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!)
A234295 E.g.f. satisfies: A(x) = 1 + A(x)^5 * Integral 1/A(x)^5 dx. 2

%I #15 Dec 26 2013 13:27:38

%S 1,1,5,65,1405,42505,1653125,78578225,4414067725,286099718425,

%T 21015972365525,1725374840578625,156560122048892125,

%U 15559151967183795625,1680744724811088153125,196083244062052339084625,24570430118524659881918125,3291153805391398126661325625

%N E.g.f. satisfies: A(x) = 1 + A(x)^5 * Integral 1/A(x)^5 dx.

%F E.g.f.: 1 + Series_Reversion( 5*log(1+x) - 4*x ).

%F E.g.f.: -5/4*LambertW(-4/5*exp((x-4)/5)).

%F E.g.f.: 1 / ( d/dx Series_Reversion( Integral G(x)^5 dx ) )^(1/5), where G(x) = 1 + x*G(x)^5 is the g.f. of A002294.

%F O.g.f.: 1 + x/(1-x - 4*x/(1-2*x - 4*2*x/(1-3*x - 4*3*x/(1-4*x - 4*4*x/(1-...))))), a continued fraction.

%F a(n) ~ sqrt(5) * n^(n-1) / (4*exp(n)*(5*log(5)-10*log(2)-1)^(n-1/2)). - _Vaclav Kotesovec_, Dec 26 2013

%e E.g.f.: A(x) = 1 + x + 5*x^2/2! + 65*x^3/3! + 1405*x^4/4! + 42505*x^5/5! +...

%e where A(5*log(1+x) - 4*x) = 1+x.

%e Related series:

%e A(x)^5 = 1 + 5*x + 45*x^2/2! + 685*x^3/3! + 15645*x^4/4! + 485645*x^5/5! +...

%e 1/A(x)^5 = 1 - 5*x + 5*x^2/2! - 85*x^3/3! - 1595*x^4/4! - 50645*x^5/5! +...

%e (d/dx Series_Reversion(Integral 1/A(x)^5 dx))^(1/5) begins:

%e G(x) = 1 + x + 5*x^2 + 35*x^3 + 285*x^4 + 2530*x^5 +...+ A002294(n)*x^n +...

%e where G(x) = 1 + x*G(x)^5.

%t CoefficientList[1 + InverseSeries[Series[5*Log[1+x]-4*x, {x, 0, 20}], x],x]* Range[0, 20]! (* _Vaclav Kotesovec_, Dec 26 2013 *)

%o (PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+A^5*intformal(1/(A^5+x*O(x^n)))); n!*polcoeff(A, n)}

%o for(n=0, 25, print1(a(n), ", "))

%o (PARI) {a(n)=local(A=1,X=x+x^2*O(x^n)); A=1+serreverse(5*log(1+X) - 4*X); n!*polcoeff(A, n)}

%o for(n=0, 25, print1(a(n), ", "))

%o (PARI) /* O.g.f. continued fraction: */

%o {a(n)=local(CF=1+x*O(x)); for(k=0, n, CF=1-(n-k+1)*x-4*(n-k+1)*x/CF); polcoeff(1+x/CF, n, x)}

%o for(n=0, 25, print1(a(n), ", "))

%Y Cf. A006351, A058562, A234294.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Dec 25 2013

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 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)