cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A297010 Expansion of e.g.f. arcsinh(x*exp(x)).

Original entry on oeis.org

0, 1, 2, 2, -8, -76, -264, 1672, 36800, 261648, -1443680, -66164704, -792152448, 2482671424, 289529373056, 5294082629760, 1648955815936, -2474170098704128, -65494141255724544, -303927676523118080, 35926135133071923200, 1341060635191667045376
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 23 2017

Keywords

Examples

			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! + ...
		

Crossrefs

Programs

  • 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]!
  • PARI
    first(n) = my(x='x+O('x^n)); Vec(serlaplace(asinh(exp(x)*x)), -n) \\ Iain Fox, Dec 23 2017