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 A306644 #18 Jun 21 2021 03:51:58 %S A306644 1,2,36,94080,114144030000,128569399991042250240, %T A306644 231970526672859167062880173363200, %U A306644 974076884952864555606703666490413198470021120000,13999785014750877128592398884910508842895938385473568105272652000000 %N A306644 a(n) = Sum_{k=0..n} (n^2)!/(k! * (n-k)!)^n. %H A306644 Seiichi Manyama, <a href="/A306644/b306644.txt">Table of n, a(n) for n = 0..24</a> %F A306644 a(n) ~ c * 2^(n^2 + 1/2) * n^(n^2 - n + 1) / Pi^(n - 1/2), where c = exp(-1/3)*JacobiTheta3(0, exp(-2)) = exp(-1/3) * EllipticTheta[3, 0, exp(-2)] = 0.910956007080971245990320395256172663671471380838524358269586617628532... if n is even and c = exp(-1/3) * JacobiTheta2(0, exp(-2)) = exp(-1/3) * EllipticTheta[3, 0, exp(-2)] = 0.885121645271745566745223804647879414416684832686710775956467801722557... if n is odd. - _Vaclav Kotesovec_, Jun 21 2021 %t A306644 a[n_] := Sum[(n^2)!/(k! * (n-k)!)^n, {k, 0, n}]; Array[a, 9, 0] (* _Amiram Eldar_, Jun 21 2021 *) %o A306644 (PARI) {a(n) = sum(k=0, n, (n^2)!/(k!*(n-k)!)^n)} %Y A306644 Main diagonal of A306641. %K A306644 nonn %O A306644 0,2 %A A306644 _Seiichi Manyama_, Mar 02 2019