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 A306153 #15 Nov 27 2020 04:07:13 %S A306153 -1,1,-4,18,-92,572,-4156,34177,-314368,3199844,-35703996,433422067, %T A306153 -5687955724,80256874912,-1211781887796,19496946568897, %U A306153 -333041104402860,6019770246910128,-114794574818830716,2303332661419442477,-48509766592884311132,1069983257387132347080 %N A306153 Inverse Weigh transform of (-1)^n * n!. %H A306153 Alois P. Heinz, <a href="/A306153/b306153.txt">Table of n, a(n) for n = 1..449</a> %H A306153 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %F A306153 a(n) ~ (-1)^n * n! * (1 - 1/n - 1/n^2 - 4/n^3 - 23/n^4 - 171/n^5 - 1542/n^6 - 16241/n^7 - 194973/n^8 - 2622610/n^9 - 39027573/n^10 - ...), for coefficients see A113869. - _Vaclav Kotesovec_, Nov 27 2020 %e A306153 (1+x)^(-1)*(1+x^2)*(1+x^3)^(-4)*(1+x^4)^18* ... = 1 - x + 2*x^2 - 6*x^3 + 24*x^4 - ... . %p A306153 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, %p A306153 add(binomial(a(i), j)*b(n-i*j, i-1), j=0..n/i))) %p A306153 end: %p A306153 a:= n-> (-1)^n*n!-b(n, n-1): %p A306153 seq(a(n), n=1..24); # _Alois P. Heinz_, Jun 23 2018 %t A306153 b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[a[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; %t A306153 a[n_] := (-1)^n n! - b[n, n - 1] // FullSimplify; %t A306153 Array[a, 24] (* _Jean-François Alcover_, Nov 27 2020, after _Alois P. Heinz_ *) %Y A306153 Cf. A168246. %K A306153 sign %O A306153 1,3 %A A306153 _Seiichi Manyama_, Jun 23 2018