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.

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

Original entry on oeis.org

1, 0, 2, -8, 56, -336, 3184, -27264, 309760, -3297280, 48104704, -624745472, 10591523840, -159594803200, 3133776259072, -56224864108544, 1249919350046720, -24600643845095424, 624022403933077504, -14094091678163140608, 381632216575339397120, -9516741266133420605440
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 - Tan[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten