{"id":22609,"date":"2021-09-27T08:33:51","date_gmt":"2021-09-27T03:03:51","guid":{"rendered":"https:\/\/python-programs.com\/?p=22609"},"modified":"2021-11-22T18:35:39","modified_gmt":"2021-11-22T13:05:39","slug":"python-program-to-print-series-10-5-60-15-110-n","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-print-series-10-5-60-15-110-n\/","title":{"rendered":"Python Program to Print Series 10, 5, 60, 15, 110 …N"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Print Series -1 4 -7 10 -13 16 -19…n<\/a>
\nGiven a number N and the task is to print the series ( 10, 5, 60, 15, 110 …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) = 14<\/pre>\n

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

The above series till the given number{ 14 } is :\r\n10 5 60 15 110 25 160 35 210 45 260 55 310 65<\/pre>\n

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

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

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

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

The above series till the given number{ 9 } is :\r\n10 5 60 15 110 25 160 35 210<\/pre>\n

Program to Print Series 10, 5, 60, 15, 110 …N in Python<\/h2>\n

Below are the ways to print the series ( 10, 5, 60, 15, 110 …N)<\/strong> till the given number N in Python:<\/p>\n