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.

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

Original entry on oeis.org

1, 0, -2, 8, -24, 144, -720, 7552, -35840, 427520, -3628800, 45415424, -479001600, 7094226944, -82614884352, 1741160087552, -20922789888000, 371094631612416, -6402373705728000, 137529198176370688, -2379913632645120000, 55730621780175355904
Offset: 1

Views

Author

Ilya Gutkovskiy, May 08 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 22; f[x_] := Product[(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