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.

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

Original entry on oeis.org

1, 0, 1, -4, 21, -126, 1023, -8240, 84745, -864370, 10925883, -133566808, 1994183205, -28455880012, 489891177051, -8112780640000, 158096182329585, -2911196026492074, 64115697136312563, -1328879415116924744, 31920276313015362525, -728711636884140292372
Offset: 1

Views

Author

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