5.
is it possible to have the table output arranged as two columns
TableForm[Table[{x, Vb[x]}, {x, 3, 12.5, 0.2}]]
If you're going to want to do further processing on that data, then I suggest you first save the data in a variable:
dataPairs = Table[{x, Vb[x]}, {x, 3, 12.5, 0.2}];
TableForm[dataPairs]
The various *Form functions are just special wrappers that the front end knows how to interpret to give certain visualizations. You rarely want to use form-wrapped expressions in computations. In other words, you probably do NOT want to do this:
dataPairs = TableForm[Table[{x, Vb[x]}, {x, 3, 12.5, 0.2}]]
TableForm has a bunch of options if you want to tweak further.