We need to find the first eight terms of the Fibonacci sequence where $u_1 = 1$ and $u_2 = 1$, with the recurrence relation $u_n = u_{n-1} + u_{n-2}$. We also need to find the first five terms of the sequence defined by $u_n = \frac{(-1)^{n+1}}{n}$.
2025/3/21
1. Problem Description
We need to find the first eight terms of the Fibonacci sequence where and , with the recurrence relation .
We also need to find the first five terms of the sequence defined by .
2. Solution Steps
(c) Fibonacci Sequence:
We are given and . We use the recurrence relation to find the next terms.
Therefore, the first eight terms are 1, 1, 2, 3, 5, 8, 13,
2
1.
(d) Sequence :
We plug in to find the first five terms.
Therefore, the first five terms are .
3. Final Answer
(c) The first eight terms of the Fibonacci sequence are 1, 1, 2, 3, 5, 8, 13,
2