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.

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

Original entry on oeis.org

1, -2, 1, -28, 21, -146, 1023, -56400, 84745, -975502, 10925883, -57795112, 1994183205, -32047567540, 489891177051, -43944425632000, 158096182329585, -3254060029210454, 64115697136312563, -921897484040044728, 31920276313015362525, -812922524976721463020
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 - Sinh[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten