Difference table looks like
\begin{array}{|c|c|c|c|}
1 &\\
& 3 &\\
4 & & 3\\
& 6 & & 1\\
10 & & 4 \\
& 10 & & 1\\
20 & & 5\\
& 15 & & 1\\
35 & & 6 \\
& 21 & & 1\\
56 & & 7\\
& 28 \\
84 \\
\end{array}
$1$-st column: given numbers.
$2$-nd column: differences: $3 = 4-1, \ \ 6 = 10-4, \ \ 10 = 20 - 10, \ \ldots$.
$3$-rd column: differences: $3 = 6-3, \ \ 4 = 10-6, \ \ 5 = 15-10, \ \ldots$.
$4$-th column is constant column, so it must be formula
$$
a_n = c_0 + c_1 n + c_2 n^2 + c_3 n^3.
$$
To find next value, we'll continue table:
\begin{array}{|c|c|c|c|}
1 &\\
& 3 &\\
4 & & 3\\
& 6 & & 1\\
10 & & 4 \\
& 10 & & 1\\
20 & & 5\\
& 15 & & 1\\
35 & & 6 \\
& 21 & & 1\\
56 & & 7\\
& 28 & & \color{red}{1}\\
84 & & \color{red}{8}\\
& \color{red}{36}\\
\color{red}{120}
\\
\end{array}
$\color{red}{1}$ $-$ because $4$-th column is constant;
$\color{red}{8} = 7+\color{red}{1}$;
$\color{red}{36} = 28+\color{red}{8}$;
$\color{red}{120} = 84+\color{red}{36}$;
If you want to find out formula, then you can create system:
$$
\left\{
\begin{array}{r}
c_0 + c_1+c_2+c_3 = 1; \\
c_0 + 2 c_1+4c_2+8c_3 = 4; \\
c_0 + 3 c_1+9c_2+27c_3 = 10; \\
c_0 + 4 c_1+16c_2+64c_3 = 20. \\
\end{array}
\right.
$$
System with Vandermonde matrix.
$$
\left\{
\begin{array}{r}
c_0 + c_1+c_2+c_3 = 1; \\
c_1+3c_2+7c_3 = 3; \\
2 c_1+8c_2+26c_3 = 9; \\
3 c_1+15c_2+63c_3 = 19. \\
\end{array}
\right.
$$
$$
\left\{
\begin{array}{r}
c_0 + c_1+c_2+c_3 = 1; \\
c_1+3c_2+7c_3 = 3; \\
2c_2+12c_3 = 3; \\
6c_2+42c_3 = 10. \\
\end{array}
\right.
$$
$$
\left\{
\begin{array}{r}
c_0 + c_1+c_2+c_3 = 1; \\
c_1+3c_2+7c_3 = 3; \\
2c_2+12c_3 = 3; \\
6c_3 = 1. \\
\end{array}
\right.
$$
Then we get:
$$
\left\{
\begin{array}{l}
c_3 = \dfrac{1}{6}; \\
c_2= \dfrac{1}{2}; \\
c_1 = \dfrac{1}{3}; \\
c_0 = 0. \\
\end{array}
\right.
$$
So,
$$a_n = \dfrac{n}{3} + \dfrac{n^2}{2}+\dfrac{n^3}{6} = \dfrac{2n+3n^2+n^3}{6}.$$
You can test this formula:
$a_1 = \dfrac{2+3+1}{6}=1$,
$a_2 = \dfrac{4+12+8}{6}=4$,
$a_3 = \dfrac{6+27+27}{6}=10$,
$\ldots \ldots$.
nth term - $n^3$
Running that through the table again I get 5 as the common difference after 3 iterations. Giving me $5*n^3$. Is that correct?
– Ant Jun 27 '13 at 22:39