This is homework, please only provide hints!
I have a question: Given a 1-by-n board, let $a_{n}$ denote the number of ways to color the board with red, blue, white and green where that the number of red squares is even, and the number of white squares is odd.
So, I've started off by setting up different cases, I believe my cases do not overlap, so they each stand as a strong case on their own (independent of one another).
case 1: you have a board with an odd number of white, and odd red. Then, for an n-1 board, you can end the board with 1 red square.
case 2: even white, even red. You can end an n-1 board with 1 white.
case 3: even white, odd red. You can end an n-2 board with 1 white and 1 red square.
So, with all these cases, I've come up with: $$ a_{n} = 2a_{n-1} + a_{n-2} $$
I'm kind of just making that equation up, I'm not really sure how to form an equation from this problem, which is why I'm posting. Any hints would be appreciated.
EDIT: I realized I left the title to "Systems of... ". We are currently studying this, so I feel that may be related to this problem, and thus, my answer would be incorrect, obviously. That may not be the case though!