Find the sum upto 'n'th term of (a+1)+(a²+a+1)+(a³+a²+a+1)+......
Answers
Answer:
u can do the ans by using GP formulae
Answer:
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3Output: 0.6666667
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3Output: 0.6666667The series is 1/3 + 1/9 + 1/27 which is
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3Output: 0.6666667The series is 1/3 + 1/9 + 1/27 which isequal to 0.6666667
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3Output: 0.6666667The series is 1/3 + 1/9 + 1/27 which isequal to 0.6666667Input: a = 5, n = 4
Program to find the sum of the series (1/a + 2/a^2 + 3/a^3 + … + n/a^n)Given two integers  and . The task is to find the sum of the series 1/a + 2/a2 + 3/a3 + … + n/an.Examples:Input: a = 3, n = 3Output: 0.6666667The series is 1/3 + 1/9 + 1/27 which isequal to 0.6666667Input: a = 5, n = 4Output: 0.31039998