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.

A317411 Expansion of e.g.f. tanh(x/(1 - x)).

Original entry on oeis.org

0, 1, 2, 4, 0, -104, -1200, -10352, -68992, -177536, 5310720, 145374208, 2512029696, 33484862464, 294806779904, -1053894275072, -133585065738240, -4148745576218624, -92116699894185984, -1510783598900412416, -11327731683300474880, 414155615537321476096, 25541948643911385219072
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 27 2018

Keywords

Comments

Lah transform of the sequence 0, 1, 0, -2, 0, 16, 0, -272, ... (A155585 with initial term 0).

Crossrefs

Programs

  • Maple
    a:=series(tanh(x/(1 - x)), x=0, 23): seq(n!*coeff(a, x, n), n=0..22); # Paolo P. Lava, Mar 26 2019
  • Mathematica
    nmax = 22; CoefficientList[Series[Tanh[x/(1 - x)], {x, 0, nmax}], x] Range[0, nmax]!
    Table[Sum[Binomial[n - 1, k - 1] 2^k EulerE[k, 1] n!/k!, {k, n}], {n, 0, 22}]