{"id":22650,"date":"2021-09-27T09:20:59","date_gmt":"2021-09-27T03:50:59","guid":{"rendered":"https:\/\/python-programs.com\/?p=22650"},"modified":"2021-11-22T18:35:38","modified_gmt":"2021-11-22T13:05:38","slug":"python-program-to-find-sum-of-series-1-22-33-5-n-n1","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-sum-of-series-1-22-33-5-n-n1\/","title":{"rendered":"Python Program to Find Sum of Series 1\/2!+2\/3!+3\/5!+…..N\/(N+1)!"},"content":{"rendered":"

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

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

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

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

Given Number (Limit) = 6<\/pre>\n

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

The above series sum till the given number N{ 6 } =  0.9998015873015872<\/pre>\n

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

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

Given Number (Limit) = 13<\/pre>\n

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

The above series sum till the given number N{ 13 } =  0.9999999999885293<\/pre>\n

Program to Find Sum of Series 1\/2!+2\/3!+3\/5!+…..N\/(N+1)!<\/h2>\n

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