Skip to Content

SERIESSUM

Returns the sum of a power series

Syntax

SERIESSUM(x, n, m, coefficients)

Parameters

  • x: Required. The input value to the power series
  • n: Required. The initial power to which you want to raise x
  • m: Required. The step by which to increase n for each term
  • coefficients: Required. A set of coefficients by which each successive power of x is multiplied

Example

=SERIESSUM(PI()/4, 0, 2, {1, -0.5, 0.0417, -0.00139})
Returns: NumberSince: Excel 2003