For given length $n$, calculate number of words consisting of letters $\{A,B,C,D\}$, where $\#A=\#B$ and $\#C=\#D$.
I know that for odd $n$ the answer is $0$. Otherwhise, I think that the result is equal to $\sum_{j=0}^{\frac{n}{2}} \binom{n}{j} \binom{n-j}{j} \binom{n-2j}{n/2 -j}$ (we choose positions for $A$, then for $B$, then for $C$, and the remaining positions for $D$), but I am curious whether we can calculate the result in more simple way.