SERIESSUM

The SERIESSUM function computes and returns the sum of a power series. The coefficients are for successive powers of x-value incremented by step-value.

SERIESSUM(x-value, power, step-value, coefficients)

x-value: The x value input to the power series. x-value is a number value.

power: A number value representing the initial power to which to raise x-value.

step-value: A number value representing the step by which to increase power for each term in the series.

coefficients: The coefficients by which each successive power of x-value is multiplied. The number of coefficients determines the number of terms in the power series. coefficients is a collection containing number values.

Notes

Examples

=SERIESSUM(2, 0, 1, 9) returns 9.

=SERIESSUM(2, 0, 1, 1) returns 1.

See also
POLYNOMIAL