Control statements - 'for' loop: summation

2. Write a reusable function with a loop that will produce a Fibonacci series. This consists of 1,1,2,3,5,8,13,… It starts with the first two items 1, 1 and then each successive item is the sum of the previous two elements. What are the 100th and 1000th elements in the series? Plot the series on a loglog plot. 3. ................
................