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 A306946 #7 Mar 18 2019 05:27:23 %S A306946 1,1,2,6,30,150,900,6300,52920,516600,5166000,56826000,689396400, %T A306946 9135126000,127891764000,1918376460000,32083427376000,547888316976000, %U A306946 9941031356256000,188879595768864000,3817981890122400000,80266319244951840000,1769328161437636800000 %N A306946 Expansion of e.g.f. Product_{k>=1} 1/(1 - x^(k^2)/k^2). %F A306946 a(n) ~ 2 * n!. - _Vaclav Kotesovec_, Mar 18 2019 %t A306946 nmax = 22; CoefficientList[Series[Product[1/(1 - x^k^2/k^2), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! %t A306946 nmax = 22; CoefficientList[Series[Exp[Sum[Sum[Boole[IntegerQ[d^(1/2)]] d^(1 - k/d), {d, Divisors[k]}] x^k/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]! %t A306946 a[n_] := a[n] = If[n == 0, 1, (n - 1)! Sum[Sum[Boole[IntegerQ[d^(1/2)]] d^(1 - k/d), {d, Divisors[k]}] a[n - k]/(n - k)!, {k, 1, n}]]; Table[a[n], {n, 0, 22}] %Y A306946 Cf. A007841, A319104. %K A306946 nonn %O A306946 0,3 %A A306946 _Ilya Gutkovskiy_, Mar 17 2019