Given the recursive Formulation, fill in the array underneath:
\[ a_{n} = a_{n-1} + d, \quad \forall n : 0 < n < x \]
Given the recursive formulation, fill in the missing cell underneath:
\[ D_{i, j} = max (D_{i-1. j-1} + 2, D_{i-1, j} + 3, D_{i, j-1} + 1)\ , \quad \forall i, j : i \ge j > 1 \]