I'm tryng to solve the following question:
Making a connected graph in a grid of size n*n, where each cell is a node and every node can only connect to a adjacent node, What is the max number of unfilled cells adjacent to a filled cell you can get $\forall n \in N$?
By example this two grids are valid:
And this is an invalid grid because (3, 4) and (4, 3) are disconnected (Disconnected graph).
By example, in a grid of size 4, the max number is 20 and this is one graph that gets it.
Note that unfilled cells adjacent to a filled cell may be off the grid. The grid only limits the filled cells.




In both the path and merely connected versions of the problem, for $n \in \{1,\dots,10\}$, integer linear programming yields optimal values $4, 8, 13, 20, 28, 37, 49, 60, 73, 90$, respectively. For example, here is an optimal solution for $n=10$:
For the path version, optimal for $n=16$ is $206$, rather than your conjectured value of $208$:
Still working on the connected version for $n=16$, but we know that $206$ is a lower bound.