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.

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

Original entry on oeis.org

1, -2, 2, -32, 56, -416, 3184, -85504, 309760, -4087552, 48104704, -546922496, 10591523840, -194387924992, 3133776259072, -129880886411264, 1249919350046720, -29073986250604544, 624022403933077504, -15137719350365519872, 381632216575339397120, -11149155036737662615552
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 - Tan[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten