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.
%I A353915 #6 May 11 2022 10:37:34 %S A353915 1,-2,-2,-16,-16,16,-832,-22016,-27648,173568,-4228608,-57965568, %T A353915 -398991360,2554896384,-98606039040,-7568860053504,-17762113880064, %U A353915 200091412463616,-7331825098948608,-258326401420099584,-2009778629489197056,25949098553870647296,-1278044473427380666368 %N A353915 Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = 1 + arctan(x). %t A353915 nn = 23; f[x_] := Product[1/(1 - a[n] x^n/n!), {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1 - ArcTan[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten %Y A353915 Cf. A010050, A353820, A353911, A353913, A353914. %K A353915 sign %O A353915 1,2 %A A353915 _Ilya Gutkovskiy_, May 10 2022