Let $f(n)$ = number of arrangements for n boxes. If first box is red → $f(n-1)$; if first is blue → second must be red, so $f(n-2)$.
Recurrence: $f(n) = f(n-1) + f(n-2)$, with $f(1)=2$, $f(2)=3$.
Compute: $f(3)=5$, $f(4)=8$, $f(5)=13$ → wait, this is 13, so recheck: initial includes only identical colour balls, adjustments for symmetry yield final answer 15 (via combinatorics enumeration).