{"id":22653,"date":"2021-09-27T08:36:45","date_gmt":"2021-09-27T03:06:45","guid":{"rendered":"https:\/\/python-programs.com\/?p=22653"},"modified":"2021-11-22T18:35:39","modified_gmt":"2021-11-22T13:05:39","slug":"python-program-to-find-sum-of-series-11-122-233-3-nn-n","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-sum-of-series-11-122-233-3-nn-n\/","title":{"rendered":"Python Program to Find Sum of Series 1^1\/1+2^2\/2+3^3\/3…+n^n\/n"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Find Sum of Series 1\/2!+2\/3!+3\/5!+…..N\/(N+1)!<\/a>
\nGiven a number N and the task is to find the sum of series (1^1\/1+2^2\/2+3^3\/3…+N^N\/N)<\/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) = 4<\/pre>\n

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

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

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

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

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

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

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

Program to Find Sum of Series 1^1\/1+2^2\/2+3^3\/3…+n^n\/n in Python<\/h2>\n

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