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 A346313 #4 Jul 13 2021 16:58:50 %S A346313 1,1,3,31,496,12576,444736,22056448,1406058816,114618828096, %T A346313 11405077216704,1385889578069184,198961869847145472, %U A346313 33725910553646229504,6594186368339077238784,1487133154121568112705536,379990326228614750079369216,110013397755650063836228435968 %N A346313 Sum_{n>=0} a(n) * x^n / (n!)^2 = Product_{n>=1} 1 / (1 + (-x)^n / n^2). %F A346313 a(0) = 1; a(n) = (1/n) * Sum_{k=1..n} (-1)^k * (binomial(n,k) * k!)^2 * ( Sum_{d|k} (-1)^d / (k/d)^(2*d-1) ) * a(n-k). %t A346313 nmax = 17; CoefficientList[Series[Product[1/(1 + (-x)^k/k^2), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!^2 %t A346313 a[0] = 1; a[n_] := a[n] = (1/n) Sum[(-1)^k (Binomial[n, k] k!)^2 Sum[(-1)^d/(k/d)^(2 d - 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 17}] %Y A346313 Cf. A249588, A292358, A326864, A346312. %K A346313 nonn %O A346313 0,3 %A A346313 _Ilya Gutkovskiy_, Jul 13 2021