Could someone please give me a method of deriving part of this table?
This is used in numerical methods, the forward finite difference method.
I've spent a few days working on this, but, my answers did not fit the table.
I need an example, of how to derive the third and fourth derivatives 
Please
Using the Taylor shift operator, you have that $$ [\Delta f](x)=f(x+h)-f(x)=[(e^{hD}-1)f](x)=[hD(1+\tfrac12hD+\tfrac16h^2D^2+...)f](x) $$ To compute forward approximations of the derivatives, you want to invert this relation, express $D$ in terms of $Δ$. This is just a Taylor series inversion problem for $$ u=e^v-1\implies v=\ln(1+u)=u-\tfrac12u^2+\tfrac13u^3\mp\dots $$ That means that to compute the $n$-th forward derivative to order $p$ you need to evaluate $$ D^n=h^{-n}(\ln(1+Δ+O(Δ^{p+1}))^n $$ treating $Δ$ as variable, then truncate and expand $Δ$ in terms of the shift operator, $Δ=S-1$ where $[Sf](x)=f(x+h)$.
Using a CAS script (Magma, try it out)
gives the table
which replicates the cited coefficient table.