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).

This page as a plain text file.
%I A353911 #6 May 11 2022 10:37:17
%S A353911 1,-2,2,-32,56,-416,3184,-85504,309760,-4087552,48104704,-546922496,
%T A353911 10591523840,-194387924992,3133776259072,-129880886411264,
%U A353911 1249919350046720,-29073986250604544,624022403933077504,-15137719350365519872,381632216575339397120,-11149155036737662615552
%N A353911 Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = 1 + tan(x).
%t A353911 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
%Y A353911 Cf. A000182, A009006, A353583, A353584, A353611, A353873, A353910, A353912.
%K A353911 sign
%O A353911 1,2
%A A353911 _Ilya Gutkovskiy_, May 10 2022