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.

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

Original entry on oeis.org

1, 0, -1, 4, -19, 114, -659, 5328, -38375, 400430, -3578279, 44920360, -476298835, 6949878740, -85215100151, 1492480745728, -20903398375855, 382829285287446, -6399968826052559, 136747967762351544, -2394435177245209195, 55602194767215266060, -1123931378903214542099
Offset: 1

Views

Author

Ilya Gutkovskiy, May 07 2022

Keywords

Crossrefs

Programs

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