Assuming an unlimited number of balls to be put into $t$ cells, such that each cell doesn't contain more than 2 balls - an empty cell will contain to balls, and a full cell will contain 2 balls. In how many ways can we put the balls in the cells such that the number of full cells will be even and the numer of empty cells will be odd ?
Attempt -
I thought about doing a double sigma, but i am not sure how to approach the problem and if my counting is even right -
$$\sum_{k=0}^t \sum_{n=0}^t \binom{t}{2k+1}\binom{t}{2n}$$
I know that this is not true, What do you think ?
A summation of trinomial coefficients:$$\sum_{k\in\mathbb Z}\sum_{n\in\mathbb Z}\binom{t}{2k+1,t-2k-2n-1,2n}\tag1$$
Here the term is taken to be $0$ if at least one of $2k+1$, $t-2k-2n$ and $2n$ takes a value that is not in $\{0,1,\dots,t\}$
You can also write $(1)$ as:$$\sum_{k\in\mathbb Z}\sum_{n\in\mathbb Z}\binom{t}{2k+1}\binom{t-2k-1}{2n}$$ where we use the convention that for nonnegative integer $n$ and integer $k$ we have $\binom{n}{k}=0$ if $k\notin\{0,\dots,n\}$