pave a 2×n rectangle with blocks of two types, A and B, as illustrated (https://gyazo.com/0dac230cb94e167508b296f6e704b063)
Long edges are length 2 and short edges are length 1. I want to know in how many ways this can be done. My goal is to find a linear recursive equation that determines all possible combinations for a rectangle of length n
Experimentally I determined all possible combinations for the first 5 rectangles.
- n = 0: x(n)=1
- n = 1: x(n)=1
- n = 2: x(n)=2
- n = 3: x(n)=5
- n = 4: x(n)=11