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!)
A214223 E.g.f. satisfies: A(x) = x/(1 - sinh(A(x))). 4
1, 2, 12, 124, 1800, 33606, 766976, 20689208, 643996800, 22719618250, 895853071872, 39043448067636, 1863697724715008, 96698693656306574, 5418685033626992640, 326140667283301420912, 20983722785088536346624, 1437191703493403790787218, 104400577820040681757736960 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f. A(x) satisfies:
(1) A(x - x*sinh(x)) = x.
(2) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) x^n*sinh(x)^n/n!.
(3) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(n-1)*sinh(x)^n/n! ).
a(n) = n*A201628(n-1).
a(n) = (n-1)! * [x^n] x/(1 - sinh(x))^n.
a(n) ~ n^(n-1) / (sqrt(s+(2-s^2)*cosh(s)) * exp(n) * (s^2*cosh(s))^(n-1/2)), where s = 0.465767175470891411756875... is the root of the equation s*cosh(s) = 1-sinh(s). - Vaclav Kotesovec, Jan 12 2014
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 124*x^4/4! + 1800*x^5/5! +...
Related expansions:
A(x) = x + x*sinh(x) + d/dx x^2*sinh(x)^2/2! + d^2/dx^2 x^3*sinh(x)^3/3! + d^3/dx^3 x^4*sinh(x)^4/4! +...
log(A(x)/x) = sinh(x) + d/dx x*sinh(x)^2/2! + d^2/dx^2 x^2*sinh(x)^3/3! + d^3/dx^3 x^3*sinh(x)^4/4! +...
A(x)/x = 1 + x + 4*x^2/2! + 31*x^3/3! + 360*x^4/4! + 5601*x^5/5! + 109568*x^6/6! +...+ A201628(n)*x^n/n! +...
sinh(A(x)) = x + 2*x^2/2! + 13*x^3/3! + 136*x^4/4! + 1981*x^5/5! + 37056*x^6/6! + 846777*x^7/7! + 22861952*x^8/8! +...
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[x - x*Sinh[x], {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 12 2014 *)
PROG
(PARI) {a(n)=(n-1)!*polcoeff(x/(1 - sinh(x+x*O(x^n)))^n, n)}
for(n=1, 25, print1(a(n), ", "))
(PARI) {a(n)=n!*polcoeff(serreverse(x-x*sinh(x+x*O(x^n))), n)}
(PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, x^m*sinh(x+x*O(x^n))^m/m!)); n!*polcoeff(A, n)}
(PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, x^(m-1)*sinh(x+x*O(x^n))^m/m!)+x*O(x^n))); n!*polcoeff(A, n)}
CROSSREFS
Sequence in context: A246738 A039933 A364397 * A173219 A227458 A035351
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 07 2012
STATUS
approved

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