OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..423
EXAMPLE
E.g.f. = x + 2*x^2/2! + x^3/3! - 12*x^4/4! - 75*x^5/5! + ...
Lim sup n->infinity (|a(n)|/n!)^(1/n) = 1.464319877618... = abs(1/r), where r is the complex root of the equation exp(2*r)*(sin(r))^2 = -1. - Vaclav Kotesovec, Nov 02 2013
MATHEMATICA
CoefficientList[Series[ArcSinh[Sin[x]*Exp[x]], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Oct 30 2013 *)
PROG
(PARI) x='x+O('x^30); concat([0], Vec(serlaplace(asinh(sin(x)*exp(x))))) \\ G. C. Greubel, Oct 26 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Argsinh(Sin(x)*Exp(x)) )); [0] cat [Factorial(n)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 26 2018
CROSSREFS
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Prepended missing a(0)=0 from Vaclav Kotesovec, Nov 02 2013
STATUS
approved