Given positive integers $n$ and $t$ find the number of ways to place $t$ horizontal dominoes in a $2\times n$ table so that no two dominoes form a $2\times 2$ square and no $2\times 3$ rectangle contains two dominoes such that the one in the upper row has occupied the middle and the rightmost cell and the one in the lower row has occupied the middle and the leftmost cell.
Apart from $A(n,1) = 2(n-1)$ and $A(n,t) = 0$ for $t\geq n$ I have no further good ideas. Perhaps some recursion (hopefully with not too many equations to manipulate)?
Any help appreciated!


For convenience, let's say that Rule 1 is that there are no 2 dominoes forming a 2x2 square and Rule 2 is that there are no two dominoes forming the upper right and lower left corners of a 2x3 square.
Let us consider an arbitrary acceptable arrangement of a $2\times n$ square with $t$ horizontal dominoes. As I see it, there are four distinct possibilities:
In all, our recursion formula is $$A(n,t)=A(n-1,t)+2A(n-2,t-1)+A(n-3,t-2)$$
As for the base cases, I think that all you would need are $A(0,0)=1$ and $A(0,t)=A(1,t)=0$ for all $t>0$, but I could be missing something.