Encuentra el término N de la serie 0, 2, 4, 8, 12, 18…

Dado un número N. La tarea es escribir un programa para encontrar el N-ésimo término en la siguiente serie: 
 

0, 2, 4, 8, 12, 18…

Ejemplos: 
 

Input: 3
Output: 4
For N = 3
Nth term = ( 3 + ( 3 - 1 ) * 3 ) / 2
         = 4
Input: 5 
Output: 12

Observando detenidamente, el término N de la serie anterior se puede generalizar como: 
 

Nth term = ( N + ( N - 1 ) * N ) / 2

A continuación se muestra la implementación del enfoque anterior:
 

C++

// CPP program to find N-th term of the series:
// 0, 2, 4, 8, 12, 18...
#include <iostream>
using namespace std;
 
// Calculate Nth term of series
int nthTerm(int N)
{
    return (N + N * (N - 1)) / 2;
}
 
// Driver Function
int main()
{
    int N = 5;
 
    cout << nthTerm(N);
 
    return 0;
}

Java

// Java program to find N-th term of the series:
// 0, 2, 4, 8, 12, 18...
import java.io.*;
 
// Main class for main method
class GFG {
    public static int nthTerm(int N)
    {
        // By using above formula
        return (N + (N - 1) * N) / 2;
    }  
  
    // Driver code
    public static void main(String[] args)
    {
        int N = 5; // 5th term is 12
             
        System.out.println(nthTerm(N));
    }
}

Python 3

# Python 3 program to find N-th term of the series:
# 0, 2, 4, 8, 12, 18.
 
# Calculate Nth term of series
def nthTerm(N) :
     
    return (N + N * (N - 1)) // 2
 
# Driver Code
if __name__ == "__main__" :
 
    N = 5
 
    print(nthTerm(N))
 
# This code is contributed by ANKITRAI1

C#

// C# program to find N-th term of the series:
// 0, 2, 4, 8, 12, 18...
using System;
class gfg
{  
    // Calculate Nth term of series
    public int nthTerm(int N)
    {
        int n = ((N + N * (N - 1)) / 2);
        return n;
    }
 
    //Driver program
    static void Main(string[] args)
    {
        gfg p = new gfg();
        int a = p.nthTerm(5);
        Console.WriteLine(a);
        Console.Read();
    }
}
//This code is contributed by SoumikMondal

PHP

<?php
// PHP program to find
// N-th term of the series:
// 0, 2, 4, 8, 12, 18...
 
// Calculate Nth term of series
function nthTerm($N)
{
    return (int)(($N + $N *
                 ($N - 1)) / 2);
}
 
// Driver Code
$N = 5;
 
echo nthTerm($N);
 
// This code is contributed by mits
?>

Javascript

<script>
 
// JavaScript program to find N-th term of the series:
// 0, 2, 4, 8, 12, 18...
 
// Calculate Nth term of series
function nthTerm(N)
{
    return parseInt((N + N * (N - 1)) / 2);
}
// Driver Function
 
    let N = 5;
    document.write(nthTerm(N));
     
// This code contributed by Rajput-Ji
 
</script>
Producción: 

12

 

Complejidad de tiempo: O(1)
 

Publicación traducida automáticamente

Artículo escrito por Rajput-Ji y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *