C++ program to find Nth term of the series 0, 2, 4, 8, 12, 18…


In this problem, we are given an integer N. Our task is to create a program to Find Nth term of series 0, 2, 4, 8, 12, 18…

Let’s take an example to understand the problem,

Input

N = 5

Output

12

Solution Approach

A simple approach to solve the problem is the formula for the Nth term of the series. For this, we need to observe the series and then generalise the Nth term.

The formula of Nth term is

T(N) = ( N + (N - 1)*N ) / 2

Program to illustrate the working of our solution,

Example

 Live Demo

#include <iostream>
using namespace std;
int calcNthTerm(int N) {
   return (N + N * (N - 1)) / 2;
}
int main() {
   int N = 10;
   cout<<N<<"th term of the series is "<<calcNthTerm(N);
   return 0;
}

Output

10th term of the series is 50

Updated on: 13-Mar-2021

301 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements