So, the puzzle is what is the maximum number of knights one can place on a $2 \times n$ ($n\ge 2$) board such that no two knights can attack each other.
Apparently there is a formula for this $2\cdot\left(2\cdot(n/4) + \min(n\,\%\,4, 2)\right)$
How can one explain this formula or how does one derive this?