hmmm,

I'm puzzled.

Lets say I have:
X0 = 1, X1 = 2, and:

Xi+2 = Xi+1 + 2*Xi + 3
This forms the series:
1, 2, 7, 14, 31, 62, ...

So,

When i is even,
Xi = 1 + 2*(4(i/2)-1)

and when i is odd,
Xi = 2 + 4*(4((i-1)/2)-1)
But, what is Xi when i <> integer, ie, perhaps when i = 1.6?