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”).

A307094
a(n) = Sum_{k=0..n} (-1)^k * binomial(n^2,k^2).
2
1, 0, -2, 117, -9634, 12625, 6612982405, -59596651685928, 718060704631041758, 93531932148176228605941, -94958916373783601251815537977, 135510731474135489426391897083350463
OFFSET
0,3
LINKS
FORMULA
a(n) = A307093(n^2).
MATHEMATICA
a[n_] := Sum[(-1)^k * Binomial[n^2, k^2], {k, 0, n}]; Array[a, 12, 0] (* Amiram Eldar, May 20 2021 *)
PROG
(PARI) {a(n) = sum(k=0, n, (-1)^k*binomial(n^2, k^2))}
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 24 2019
STATUS
approved