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.

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

This page as a plain text file.
%I A353821 #6 May 10 2022 14:26:41
%S A353821 1,0,2,-8,64,-384,3968,-34432,414720,-4454400,68247552,-912236544,
%T A353821 15949529088,-245572583424,5012834549760,-92436465352704,
%U A353821 2119956936523776,-42836227522560000,1123874181449515008,-26161653829651660800,730049769522063212544,-18719979459270521389056
%N A353821 Product_{n>=1} (1 + a(n)*x^n/n!) = 1 + arctanh(x).
%t A353821 nn = 22; f[x_] := Product[(1 + a[n] x^n/n!), {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1 - ArcTanh[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
%Y A353821 Cf. A006973, A010050, A137852, A353779, A353818, A353819, A353820.
%K A353821 sign
%O A353821 1,3
%A A353821 _Ilya Gutkovskiy_, May 08 2022