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

A189791
Number of ways to place n nonattacking bishops on an 2n x 2n toroidal board.
3
4, 80, 2688, 132864, 8647680, 699678720, 67711795200, 7629571031040, 981168437329920, 141817953779712000, 22760391875493888000, 4016046336733347840000, 772743693378451931136000, 161027573368536472485888000, 36127883615009765477842944000
OFFSET
1,1
FORMULA
a(n)=2^n*n!*Sum[Binomial[n,i]^3,{i,0,n}].
Asymptotic: a(n) ~ 2^(4n+1)*(n-1)!/Pi/sqrt(3) ~ 2^(4n+1)*n^n/exp(n)*sqrt(2/(3*Pi*n)).
Recurrence: a(n) = ((14*n^2-14*n+4)*a(n-1) + 32*(n-1)^3*a(n-2))/n.
MATHEMATICA
Table[2^n*n!*Sum[Binomial[n, i]^3, {i, 0, n}], {n, 1, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Apr 27 2011
STATUS
approved