- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C++ program to find Nth term of the series 1, 6, 18, 40, 75, ….
In this problem, we are given an integer N. Our task is to create a program to Find Nth term of series 1,6, 18, 40, 75 ...
Let’s take an example to understand the problem,
Input
N = 4
Output
40
Explanation
4th term − (4 * 4 * 5 ) / 2 = 40
Solution Approach
A simple approach to solve the problem is by using the general formula for the nth term of the series. The formula for,
Nth term = ( N * N * (N + 1) ) / 2
Program to illustrate the working of our solution,
Example
#include <iostream> using namespace std; int calcNthTerm(int N) { return ( (N*N*(N+1))/2 ); } int main() { int N = 5; cout<<N<<"th term of the series is "<<calcNthTerm(N); return 0; }
Output
5th term of the series is 75
- Related Articles
- C++ program to Find Nth term of the series 1, 1, 2, 6, 24…
- C++ program to find Nth term of the series 0, 2, 4, 8, 12, 18…
- C++ program to find Nth term of the series 1, 5, 32, 288 …
- C++ program to find Nth term of the series 1, 8, 54, 384…
- C++ program to find Nth term of series 1, 4, 15, 72, 420…
- Find the Nth term of the series 14, 28, 20, 40,….. using C++
- Program to find N-th term of series 3, 6, 18, 24, … in C++
- C++ program to find Nth number of the series 1, 6, 15, 28, 45, …..
- C++ program to find Nth term of the series 3, 14, 39, 84…
- C++ program to find nth term of the series 5, 2, 13 41,...
- C++ program to find Nth term of the series 5, 13, 25, 41, 61…
- C++ program to find n-th term of series 1, 3, 6, 10, 15, 21…
- Find the nth term of the given series 0, 0, 2, 1, 4, 2, 6, 3, 8, 4… in C++
- Program to find N-th term of series 9, 23, 45, 75, 113… in C++
- C++ program to get the Sum of series: 1 – x^2/2! + x^4/4! -…. upto nth term

Advertisements