Program to find Nth term of series 4, 14, 28, 46, 68, 94, 124, 158, …..
Given a number N. The task is to write a program to find the Nth term of the below series:
4, 14, 28, 46, 68, 94, 124, 158…..(N Terms)
Examples:
Input: N = 4
Output: 46
For N = 4
4th Term = ( 2 * 4 * 4 + 4 * 4 - 2)
= 46
Input: N = 10
Output: 237
Approach: The generalized Nth term of this series:
Below is the required implementation:
C++
#include <iostream>
#include <math.h>
using namespace std;
int nthTerm( int n)
{
return 2 * pow (n, 2) + 4 * n - 2;
}
int main()
{
int N = 4;
cout << nthTerm(N) << endl;
return 0;
}
|
Java
import java.util.*;
class solution
{
static int nthTerm( int n)
{
return 2 *( int )Math.pow(n, 2 ) + 4 * n - 2 ;
}
public static void main(String arr[])
{
int N = 4 ;
System.out.println(nthTerm(N));
}
}
|
Python3
def nthTerm(n):
return 2 * pow (n, 2 ) + 4 * n - 2
N = 4
print (nthTerm(N))
|
C#
using System;
class GFG
{
static int nthTerm( int n)
{
return 2 * ( int )Math.Pow(n, 2) +
4 * n - 2;
}
public static void Main()
{
int N = 4;
Console.Write(nthTerm(N));
}
}
|
PHP
<?php
function nthTerm( $n )
{
return 2 * pow( $n , 2) + 4 * $n - 2;
}
$N = 4;
echo nthTerm( $N ) . "\n" ;
?>
|
Javascript
<script>
function nthTerm( n)
{
return 2 * Math.pow(n, 2) + 4 * n - 2;
}
let N = 4;
document.write( nthTerm(N) );
</script>
|
Time Complexity: O(1), since there is no loop or recursion.
Space Complexity: O(1) since using constant variables