{"id":19928,"date":"2021-09-02T15:20:19","date_gmt":"2021-09-02T09:50:19","guid":{"rendered":"https:\/\/python-programs.com\/?p=19928"},"modified":"2021-11-22T18:36:29","modified_gmt":"2021-11-22T13:06:29","slug":"python-program-to-find-sum-of-series-1-1-2-1-2-3-till-n","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-sum-of-series-1-1-2-1-2-3-till-n\/","title":{"rendered":"Python Program to Find Sum of Series (1+(1*2)+(1*2*3)+…till N)"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Find Sum of Series (1+(1+2)+(1+2+3)+…till N)<\/a>
\nGiven a number N and the task is to find the sum of the given series (1+(1*2)+(1*2*3)+…till N) <\/strong>for the given number in Python.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number = 13<\/pre>\n

Output:<\/strong><\/p>\n

The total sum of the series till the given number { 13 } = 6749977113<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number = 7<\/pre>\n

Output:<\/strong><\/p>\n

The total sum of the series till the given number { 7 } =  5913<\/pre>\n

Program to Find the sum of series (1+(1*2)+(1*2*3)+…till N) in Python<\/h2>\n

Below are the ways to find the sum of the given series (1+(1*2)+(1*2*3)+…till N)<\/strong> for the given number in Python :<\/p>\n