I have a task to calculate a value, which includes 2variables and should be implemented with recursion restate.<o:p></o:p>
The formula is simple: Fn = Fn-1 * 2+ An (Given conditions:F0 = 10, A = 1 + til 5)<o:p></o:p>
<o:p> </o:p>
I implemented the part of _Fn =Fn-1 * 2_ in Q with 5 {x * 2}\ 10, but I was blocked with the secondvariable. Do you have any comment? Appreciate for you advice.