OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
V. Kotesovec, Number of ways of placing non-attacking queens, kings, bishops and knights (in English and Czech)
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