login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

a(n) = Sum_{i_1=0..n} Sum_{i_2=0..n} ... Sum_{i_n=0..n} (-1)^(i_1 + i_2 + ... + i_n) * multinomial(i_1 + i_2 + ... + i_n; i_1, i_2, ..., i_n).
2

%I #18 May 21 2019 11:34:51

%S 1,0,3,-692,25413205,-247578134832564,1049539393188856278390451,

%T -2871690441592604257533055860715129272,

%U 7040796701370550878156702345258827433898638874681737,-20490586759699718697495728993626502030472234718733294544426997558792280

%N a(n) = Sum_{i_1=0..n} Sum_{i_2=0..n} ... Sum_{i_n=0..n} (-1)^(i_1 + i_2 + ... + i_n) * multinomial(i_1 + i_2 + ... + i_n; i_1, i_2, ..., i_n).

%H Seiichi Manyama, <a href="/A308323/b308323.txt">Table of n, a(n) for n = 0..26</a>

%o (PARI) {a(n) = sum(i=0, n^2, (-1)^i*i!*polcoef(sum(j=0, n, x^j/j!)^n, i))}

%Y Main diagonal of A308322.

%Y Cf. A274762.

%K sign

%O 0,3

%A _Seiichi Manyama_, May 20 2019