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.

A353912 Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = 1 + tanh(x).

Original entry on oeis.org

1, -2, -2, -16, -24, 64, -720, -23808, -35840, 282368, -3628800, -75458560, -479001600, 5315078144, -82614884352, -8601835798528, -20922789888000, 321288633450496, -6402373705728000, -309168395474436096, -2379913632645120000, 46441359567137275904
Offset: 1

Views

Author

Ilya Gutkovskiy, May 10 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 22; f[x_] := Product[1/(1 - a[n] x^n/n!), {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1 - Tanh[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten