So I have the below recurrence relation.
If you write out some terms you get the following
a(0) = 2
a(1) = 13
a(2) = 57
a(3) = 233
a(4) = 937
the delta values are as follows
a(0-1) = 11
a(1-2) = 44
a(2-3) = 176
a(3-4) = 704
Simple algebra tells that you can find the next term by multiplying by 4 so the difference is 4x. Now my question is, how can I use this knowledge to find a closed form? The formula of a geometric sequence (a(n)=a(0)r^n) doesn't seem to work here and that's the most similar closed form formula I can think of.
