For each nonnegative integer $n$, calculate the number of triples $(a, b, c)$ of nonnegative integers which satisfy the system of inequalities below:
$ \begin{cases} a + b \leq 2n \\ a + c \leq 2n \\ c + b \leq 2n \\ \end{cases}$
What I thought: We can solve this by plotting the inequalities with the bounds $x,y,z\geq0$ and getting that all such $(a,b,c)$ are lattice points bounded by the axis and $x+y+z=2n$.
The constraints define an $n$-fold dilation of the 3-dimensional polytope with vertices $(0,0,0)$, $(1,1,0)$, $(1,0,1)$, and $(0,1,1)$. The number of lattice points is hence a cubic Ehrhart polynomial. By inspection, the counts are $1, 11, 42, 106$, for $n=0,1,2,3$, respectively. The resulting polynomial is hence $$2n^3 + \frac{9n^2}{2} + \frac{7n}{2} + 1.$$