Question 62635
<b>Find the closed form of the following recursive function: a(n)=5*a(n-1) where a(0) is the initial value.</b>

{{{a[1]=5*a[0]}}}.
{{{a[2]=5*5*a[0]=5^2*a[0]}}}.
{{{a[3]=5*5*5*a[0]=5^3*a[0]}}}.

In general, {{{a[n]=5^n*a[0]}}}.