cp's OEIS Frontend

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.

Showing 1-1 of 1 results.

A348322 a(n) = Sum_{k=0..n} (-1)^k * binomial(n^2 - k,n*k).

Original entry on oeis.org

1, 1, -2, -48, 1626, 931040, -479909170, -5499596761127, 43158334880135692, 9081843551946977373216, -1095541637114516172591381711, -4049135740387789992460066844854898, 7569951149407063102291625516677078697579
Offset: 0

Views

Author

Seiichi Manyama, Oct 12 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[(-1)^k * Binomial[n^2 - k, n*k], {k, 0, n}]; Array[a, 13, 0] (* Amiram Eldar, Oct 12 2021 *)
  • PARI
    a(n) = sum(k=0, n, (-1)^k*binomial(n^2-k, n*k));
    
  • PARI
    a(n) = polcoef((1-x)^(n-1)/((1-x)^n+x^(n+1)+x*O(x^n^2)), n^2);

Formula

a(n) = [x^(n^2)] (1-x)^(n-1)/((1-x)^n + x^(n+1)).
Showing 1-1 of 1 results.