login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A348322 a(n) = Sum_{k=0..n} (-1)^k * binomial(n^2 - k,n*k). 3
1, 1, -2, -48, 1626, 931040, -479909170, -5499596761127, 43158334880135692, 9081843551946977373216, -1095541637114516172591381711, -4049135740387789992460066844854898, 7569951149407063102291625516677078697579 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^(n^2)] (1-x)^(n-1)/((1-x)^n + x^(n+1)).
MATHEMATICA
a[n_] := Sum[(-1)^k * Binomial[n^2 - k, n*k], {k, 0, n}]; Array[a, 13, 0] (* Amiram Eldar, Oct 12 2021 *)
PROG
(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);
CROSSREFS
Sequence in context: A010046 A013517 A027509 * A186284 A119695 A119698
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 12 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:43 EDT 2024. Contains 371967 sequences. (Running on oeis4.)