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.

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

Original entry on oeis.org

1, -2, 2, -32, 64, -464, 3968, -92672, 414720, -5486592, 68247552, -869895168, 15949529088, -299609505792, 5012834549760, -177156842717184, 2119956936523776, -50954009373573120, 1123874181449515008, -29311973327486582784, 730049769522063212544, -22005690087484302557184
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 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 - ArcTanh[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten