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.

A296729 Expansion of e.g.f. arcsin(x*cosh(x)) (odd powers only).

Original entry on oeis.org

1, 4, 44, 1912, 156816, 21506816, 4420845376, 1271132964480, 487161448339712, 239980527068474368, 147742478026391141376, 111153314734461183924224, 100339775128577885016985600, 107037870347952811373977239552, 133204585741561810426003651444736
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 19 2017

Keywords

Examples

			arcsin(x*cosh(x)) = x/1! + 4*x^3/3! + 44*x^5/5! + 1912*x^7/7! + 156816*x^9/9! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 15; Table[(CoefficientList[Series[ArcSin[x Cosh[x]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
  • PARI
    first(n) = x='x+O('x^(2*n)); vecextract(Vec(serlaplace(asin(x*cosh(x)))), (4^n - 1)/3) \\ Iain Fox, Dec 19 2017

Formula

a(n) = (2*n+1)! * [x^(2*n+1)] arcsin(x*cosh(x)).