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 A348321 #16 Oct 13 2021 10:25:18 %S A348321 1,1,0,-19,-493,-12500,2110381,2291797033,2190576317924, %T A348321 641690166054149,-51808237792071009216,-1670420776971967146820397, %U A348321 -51706433129693385388017540008,3622699946475084834038607930411332,5598748000229343046813449019221837072281 %N A348321 a(n) = Sum_{k=0..floor(n/2)} (-1)^k * binomial(n*(n-k),n*k). %H A348321 Seiichi Manyama, <a href="/A348321/b348321.txt">Table of n, a(n) for n = 0..69</a> %F A348321 a(n) = [x^(n^2)] (1-x)^(n-1)/((1-x)^n + x^(2*n)) for n > 0. %t A348321 a[n_] := Sum[(-1)^k * Binomial[n*(n - k), n*k], {k, 0, n}]; Array[a, 15, 0] (* _Amiram Eldar_, Oct 12 2021 *) %o A348321 (PARI) a(n) = sum(k=0, n, (-1)^k*binomial(n*(n-k), n*k)); %o A348321 (PARI) a(n) = if(n==0, 1, polcoef((1-x)^(n-1)/((1-x)^n+x^(2*n)+x*O(x^n^2)), n^2)); %Y A348321 Cf. A238696, A348322. %K A348321 sign %O A348321 0,4 %A A348321 _Seiichi Manyama_, Oct 12 2021