SERIESSUM function

SERIESSUM returns the sum of a power series based on the formula.

Syntax

SERIESSUM(x, n, m, coefficients )

  • x is the input value for the power series.
  • n is the initial power to which you want to raise x.
  • m is the increment to increase n.
  • coefficients is a series of coefficients by which each successive power of x is multiplied. The number of values in coefficients is the same as the number of terms in the power series.

Example

=SERIESSUM(A2,0,2,A3:A6)