Series_sum
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Series_sum

  • Dark
    Light
  • PDF

Article Summary

Calculates the sum of a power series. Given a list of numbers , and the constants , and , the sum is calculated using the formula:

Function signature

SERIES_SUM(numberx: Number, numbern: Number, numberm: Number, list: Array) => Number
ParameterDescription
Number xThe x value input to the power series.
Number nThe initial power to which to raise x in the power series.
Number mThe additive increment by which to increase the power to which x is raised.
ListThe list or range containing the coefficients of the power series.

Examples

FormulaReturn value
SERIES_SUM(1, 2, 3, [1, 2, 3])6
SERIES_SUM(2, 2, 3, [1, 2, 3])836
SERIES_SUM(3, 2, 3, [1, 2, 3])20178

Was this article helpful?

What's Next