Knowing that S(n) is the sum of the first n terms in the fibonacci series, and that G(n) is the sum of the first n terms in the "S" series, create a function that returns the value of G(n), for 20000 >= n >= 20.
The entries will be the value of n and the value of A(n).
Series representation:
G (20, 6765) ➞ 46345
G (21, 10946) ➞ 75001
G (80, 23416728348467685) ➞ 160500643816367005
Consider that the first terms of the fibonacci series are: 1, 1, 2 ...