
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Program for Find sum of Series with the n-th term as n^2 – (n-1)^2
In this article, we will learn about the solution to the problem statement given below:
Problem statement
We are given an integer input n and we need to sum of all n terms where the n-th term in a series as expressed below −
Tn = n2 - (n-1)2
We have direct formulas for computing the sum which includes the squared muktiolicaion of n which involves more time complexity . To reduce that we usr modular multiplication approach here
Now let's see the implementation −
Example
# Python program to find sum of given # series. mod = 1000000007 def findSum(n): return ((n % mod) * (n % mod)) % mod # main() n = 229137999 print (findSum(n))
Output
218194447
All the variables are declared in the global frame as shown in the figure given below −
Conclusion
In this article, we learned about the approach to Find the sum of Series with the n-th term as n^2 – (n-1)^2
- Related Articles
- Java Program to Find sum of Series with n-th term as n^2 – (n-1)^2
- Find sum of Series with n-th term as n^2 - (n-1)^2 in C++
- C/C++ Program to Find the sum of Series with the n-th term as n^2 – (n-1)^2
- C/C++ Program to Find sum of Series with n-th term as n power of 2 - (n-1) power of 2
- Python Program to find the sum of a Series 1/1! + 2/2! + 3/3! + 4/4! +…….+ n/n!
- Program to find N-th term of series 1, 2, 11, 12, 21… in C++
- C++ program to find the sum of the series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n
- C++ program to find the sum of the series 1/1! + 2/2! + 3/3! + 4/4! +…….+ n/n!
- C++ program to find n-th term of series 2, 10, 30, 68, 130 …
- C++ Program to find the sum of a Series 1/1! + 2/2! + 3/3! + 4/4! + …… n/n!
- Java Program to find the sum of a Series 1/1! + 2/2! + 3/3! + 4/4! +…….+ n/n!
- Program to find N-th term of series 0, 0, 2, 1, 4, 2, 6, 3, 8…in C++
- C++ Programe to find n-th term in series 1 2 2 3 3 3 4
- If the sum of the first $n$ terms of an AP is $\frac{1}{2}(3n^2+7n)$ then find its $n^{th}$ term. Hence, find its $20^{th}$ term.
- Sum of the series 1.2.3 + 2.3.+ … + n(n+1)(n+2) in C

Advertisements