Computer Science, asked by sandipmanna2005, 8 months ago

1. Write a program to display the following terms of the
series –
X^2 + X^5+ X^6+X^9+X^10+X^13+…. N terms
If N=10 then 10 different individual terms has to be printed

Answers

Answered by Anonymous
2

Answer:

This is a mathematical series program where a user must enter the number of terms up to which the sum of the series is to be found. Following this, we also need the value of x, which forms the base of the series.

Examples:

Input : x = 9, n = 10

Output : -5.1463

Input : x = 5, n = 15

Output : 0.2837

Answered by Anonymous
0

Answer:

Input : x = 9, n = 10

Output: -5.1463

Input: x= 5, n = 15

Output: 0.2837

Similar questions