Problem
There is a knight on an infinite chessboard. After moving one step, there are $8$ possible positions, and after moving two steps, there are $33$ possible positions. The possible position after moving n steps is $a_n$, find the formula for $a_n$.
I found this sequence is http://oeis.org/A118312
But I can't understand this Recurrence Relation
$$a_n = 3a_{n-1} - 3a_{n-2} + a_{n-3}, \quad\quad n\geq3$$
Can someone give the intuition for this relationship?
An intuitive setup
The growth of the number of knight moves for $n \ge 3$ can be modelled by an octagon increasing linearly in size, simulated below
Simulation taken from here.
We will use the following image to construct the recurrence relation.
In the image above, $$a_n = \text{black points + red points + green points + blue points}$$ $$a_{n-1} - a_{n-2} = (\text{black points + red points + green points}) - (\text{black points + red points}) = \text{green points}$$ $$a_{n-3} = \text{black points}$$
Hence, the relation is equivalent to proving $$3\cdot\text{green points} + \text{black points} = \text{black points + red points + green points + blue points}$$ $$\iff 2\cdot\text{green points} = \text{red points + blue points}$$
As the growth of the number of points is linear, we have $$a = \text{red points}$$ $$a + d = \text{green points}$$ $$a + 2d = \text{blue points}$$
It holds that $$2(a + d) = a + (a + 2d)$$
$\blacksquare$