Question: How to convert this answer to this format?

I want to find general formulas of the sequence satifies:
f(1) = 1, f(n+1) = 1/2*(f(n)+9/f(n))
I tried 
restart;
rsolve({f(1) = 1, f(n+1) = 1/2*(f(n)+9/f(n))}, {f})

I got the answer
3*coth((1/2)*arccoth(1/3)*2^n)

How to get the form (-3*2^(2^(-1+n))+3*(-1)^(1+2^(-1+n)))/(-2^(2^(-1+n))+1)?

Please Wait...