I'm want to build a game (with steps) that the solution have a Recurrence relation, i.e. - to solve the game you have to move from point A to point B, from point B to point C...(kind of a maze).
Of course that will be a few ways to each point, and the player should choose the way with the amount of the steps by the Recurrence relation...
What I need?
I need few Recurrence relations (something like 4) that all the first 15 elements (it can be less the 15) are between $3-50$
I try to find few, but there was problems:
$x(n)= 2*x(n-1)$ - if I choose $x(0)>0$ the numbers are getting higher too much fast...
$x(n)=2*x(n-1)-x(n-2)$ - Too much easy to solve (from few examples...).
(I took those examples from a site...)
Can you help me and give me few examples?
Thank you!