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 A356578 #12 Aug 13 2022 11:29:17 %S A356578 1,0,2,15,92,1050,8514,147000,1546544,29673000,478186920,9011752200, %T A356578 178483287432,4205087686800,91775320005264,2290742704668600, %U A356578 63289842765692160,1696665419122968000,50287699532618564544,1549916411848463721600 %N A356578 Expansion of e.g.f. ( Product_{k>0} 1/(1 - k * x^k) )^x. %F A356578 a(0) = 1, a(1) = 0; a(n) = Sum_{k=2..n} k * A354848(k-1) * binomial(n-1,k-1) * a(n-k). %o A356578 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, 1-k*x^k)^x)) %o A356578 (PARI) a354848(n) = (n-1)!*sumdiv(n, d, d^(n/d+1)); %o A356578 a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j*a354848(j-1)*binomial(i-1, j-1)*v[i-j+1])); v; %Y A356578 Cf. A078308, A353993, A354848. %K A356578 nonn %O A356578 0,3 %A A356578 _Seiichi Manyama_, Aug 12 2022