Is there a recurrence solution to $a_n=\frac{n}{a_{n-1}}$? I'm wondering if it could be done in the form of an alternating series partial to $n$ or as a trigonometric function.
2026-05-14 11:33:21.1778758401
solution to the recurrence relation $a_n=\frac{n}{a_{n-1}}$
61 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Hint:
Set $b_n = \ln a_n$. Then $b_n = - b_{n-1} + \ln n$, and we can write $$\begin{align} b_n &= - b_{n-1} + \ln n = b_{n-2} - \ln (n-1) + \ln n\\ &= -b_{n-3} + \ln(n-2) - \ln (n-1) + \ln n \\ &\vdots \\ &= b_1 + \sum_{k=1}^n (-1)^{n-k} \ln k \end{align}$$
Can you continue?