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.

A294313 Expansion of e.g.f. sech(x*exp(x)).

Original entry on oeis.org

1, 0, -1, -6, -19, 20, 899, 7966, 27705, -366552, -8374201, -80690302, 9794597, 16015845820, 317370642315, 2554368906150, -37571987331343, -1784464543440304, -31315944840101233, -80221319702865398, 12685422355781995485, 422083364962616527716
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 27 2017

Keywords

Examples

			sech(x*exp(x)) = 1 - x^2/2! - 6*x^3/3! - 19*x^4/4! + 20*x^5/5! + 899*x^6/6! + ...
		

Crossrefs

Programs

  • Maple
    a:=series(sech(x*exp(x)),x=0,22): seq(n!*coeff(a,x,n),n=0..21); # Paolo P. Lava, Mar 27 2019
  • Mathematica
    nmax = 21; CoefficientList[Series[Sech[x Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
    nmax = 21; CoefficientList[Series[1/Cosh[x Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!