This is the example to numbers to the 3rd.
Here is the same thing just with numbers to the 4th
Well I was messing around with numbers I made this discovery, with the correlation between n^x and x!. What is the reason for this? Is it easily explainable?
In the sheets every column is found from the differences of two numbers in sequence in the last column
The relevant keyword here is finite differences. In general, if $f(n)$ is a sequence, we can construct from it a new sequence, the forward difference
$$(\Delta f)(n) = f(n+1) - f(n).$$
There is also a backward difference. For example, if $f(n) = n^2$, then
$$(\Delta f)(n) = (n + 1)^2 - n^2 = 2n + 1.$$
If you've taken calculus this should remind you a lot of what happens when you differentiate polynomials. There are several more very nice things to say about finite differences but this is enough to explain your observation.