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 A353607 #10 May 08 2022 08:45:04 %S A353607 1,0,-1,4,-19,114,-659,5328,-38375,400430,-3578279,44920360, %T A353607 -476298835,6949878740,-85215100151,1492480745728,-20903398375855, %U A353607 382829285287446,-6399968826052559,136747967762351544,-2394435177245209195,55602194767215266060,-1123931378903214542099 %N A353607 Product_{n>=1} (1 + a(n)*x^n/n!) = 1 + sin(x). %t A353607 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 %Y A353607 Cf. A006973, A137852, A170914, A170915, A353608, A353609, A353610, A353611. %K A353607 sign %O A353607 1,4 %A A353607 _Ilya Gutkovskiy_, May 07 2022