login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A297010
Expansion of e.g.f. arcsinh(x*exp(x)).
4
0, 1, 2, 2, -8, -76, -264, 1672, 36800, 261648, -1443680, -66164704, -792152448, 2482671424, 289529373056, 5294082629760, 1648955815936, -2474170098704128, -65494141255724544, -303927676523118080, 35926135133071923200, 1341060635191667045376
OFFSET
0,3
LINKS
EXAMPLE
arcsinh(x*exp(x)) = x^1/1! + 2*x^2/2! + 2*x^3/3! - 8*x^4/4! - 76*x^5/5! - 264*x^6/6! + ...
MAPLE
a:=series(arcsinh(x*exp(x)), x=0, 22): seq(n!*coeff(a, x, n), n=0..21); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 21; CoefficientList[Series[ArcSinh[x Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 21; CoefficientList[Series[Log[x Exp[x] + Sqrt[1 + x^2 Exp[2 x]]], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) first(n) = my(x='x+O('x^n)); Vec(serlaplace(asinh(exp(x)*x)), -n) \\ Iain Fox, Dec 23 2017
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 23 2017
STATUS
approved