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 A293236 #14 Nov 15 2020 03:10:22 %S A293236 1,-1,1,-6,24,-117,700,-4947,39760,-358682,3594084,-39598866, %T A293236 475774299,-6191078998,86742689434,-1301964957707,20842304366686, %U A293236 -354473010919852,6382843971860354,-121311619900081996,2426875912883720386,-50976050128395861672 %N A293236 G.f.: Product_{i>0} Sum_{j>=0} (-1)^j*j!*x^(j*i). %H A293236 Alois P. Heinz, <a href="/A293236/b293236.txt">Table of n, a(n) for n = 0..450</a> %F A293236 a(n) ~ (-1)^n * n! * (1 - 1/n^2 + 3/n^4 + 12/n^5 + 35/n^6 + 61/n^7 - 153/n^8 - 2197/n^9 - 11330/n^10), for coefficients see A293267. - _Vaclav Kotesovec_, Oct 04 2017 %p A293236 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, %p A293236 add(b(n-i*j, i-1)*j!*(-1)^j, j=0..n/i))) %p A293236 end: %p A293236 a:= n-> b(n$2): %p A293236 seq(a(n), n=0..23); # _Alois P. Heinz_, Oct 04 2017 %t A293236 m = 22; %t A293236 CoefficientList[Product[Sum[(-1)^j j! x^(i j), {j, 0, m}], {i, 1, m}] + O[x]^m, x] (* _Jean-François Alcover_, Nov 15 2020 *) %Y A293236 Cf. A293071. %K A293236 sign %O A293236 0,4 %A A293236 _Seiichi Manyama_, Oct 03 2017