{"id":22648,"date":"2021-09-27T08:35:20","date_gmt":"2021-09-27T03:05:20","guid":{"rendered":"https:\/\/python-programs.com\/?p=22648"},"modified":"2021-11-22T18:35:39","modified_gmt":"2021-11-22T13:05:39","slug":"python-program-to-find-sum-of-series-5-2-10-2-15-2-n-2","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-sum-of-series-5-2-10-2-15-2-n-2\/","title":{"rendered":"Python Program to Find Sum of Series 5^2 + 10^2 + 15^2 +…..N^2"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Print Series 0 2 6 12 20 30 42…N<\/a>
\nGiven a number N and the task is to find the sum of series (5^2+10^2+15^2+…..N^2)<\/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) = 25<\/pre>\n

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

The above given series sum =  1375<\/pre>\n

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

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

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

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

The above given series sum =  125<\/pre>\n

Program to Find Sum of Series 5^2+10^2+15^2+…..N^2 in Python<\/h2>\n

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