- 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
N-th term in the series 1, 11, 55, 239, 991,…in C++
The given series is 1, 11, 55, 239, 991...
If you clearly observe the series, you will find that the n-th number is 4n-2n-1.
Algorithm
- Initialise the number N.
- Use the series formula to compute the n-th term.
- Print the result.
Implementation
Following is the implementation of the above algorithm in C++
#include <bits/stdc++.h> using namespace std; int getNthTerm(int n) { int num = pow(4, n) - pow(2, n) - 1; return num; } int main() { int n = 7; cout << getNthTerm(n) << endl; return 0; }
Output
If you run the above code, then you will get the following result.
16255
- Related Articles
- Program to find N-th term of series 1, 2, 11, 12, 21… in C++
- n-th term of series 1, 17, 98, 354…… in C++
- Find sum of Series with n-th term as n^2 - (n-1)^2 in C++
- Program to find N-th term in the given series in C++
- If $(m + 1)$th term of an A.P. is twice the $(n + 1)$th term, prove that $(3m + 1)$th term is twice the $(m + n + 1)$th term.
- Program to find N-th term of series 1, 3, 12, 60, 360...in C++
- C/C++ Program to Find the sum of Series with the n-th term as n^2 – (n-1)^2
- Program to find N-th term of series 0, 11, 28, 51, 79, 115, 156, 203, …In C++
- n-th term in series 2, 12, 36, 80, 150….in C++
- C++ Programe to find n-th term in series 1 2 2 3 3 3 4
- C++ program to find n-th term in the series 7, 15, 32, …
- C++ program to find n-th term in the series 9, 33, 73,129 …
- C Program for N-th term of Geometric Progression series
- C Program for N-th term of Arithmetic Progression series
- C++ program to find n-th term of series 1, 3, 6, 10, 15, 21…

Advertisements