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

A172651
Number of 2*n X n 0..2 arrays with row sums 2 and column sums 4.
1
1, 19, 2385, 1093050, 1328792850, 3536978063850, 18126466426218150, 163081394186253543000, 2402820978940192425615000, 54918587341306311174536985000, 1864314763102041137068549803435000
OFFSET
1,2
LINKS
FORMULA
a(n) = 24^(-n)*n!(2n)!*Sum_{i=0..n} Sum_{j=0..n-i} (3^(n-i-j)6^j*(4i+2j)!/(i!j!(n-i-j)!(2i+j)!2^(2i+j))). - Shanzhen Gao, Feb 24 2010
a(n) ~ sqrt(Pi) * 2^(3*n + 3/2) * n^(4*n + 1/2) / (3^n * exp(4*n - 3/2)). - Vaclav Kotesovec, Oct 22 2023
MATHEMATICA
Table[24^(-n)*n!*(2*n)! * Sum[Sum[(3^(n-i-j)*6^j*(4*i+2*j)! / (i!*j!*(n-i-j)!*(2*i+j)!*2^(2*i+j))), {j, 0, n-i}], {i, 0, n}], {n, 1, 15}] (* Vaclav Kotesovec, Oct 22 2023 *)
PROG
(PARI) a(n) = 24^(-n)*n!*(2*n)!*sum(i=0, n, sum(j=0, n-i, (3^(n-i-j)*6^j*(4*i+2*j)!/(i!*j!*(n-i-j)!*(2*i+j)!*2^(2*i+j))))); \\ Michel Marcus, Jan 17 2018
CROSSREFS
Sequence in context: A324424 A178025 A364851 * A183739 A277000 A055415
KEYWORD
nonn
AUTHOR
R. H. Hardin, Feb 06 2010
STATUS
approved