📜  找到系列 0、2、6、12、20、30、42... 的第 N 项

📅  最后修改于: 2022-05-13 01:56:08.149000             🧑  作者: Mango

找到系列 0、2、6、12、20、30、42... 的第 N 项

给定一个正整数N ,任务是找到序列的第 N 项

例子:

方法:

从给定的系列中,找到第 N项的公式-

给定系列的第 N项可以概括为-

插图:

以下是上述方法的实现 -

C++
// C++ program to implement
// the above approach
#include 
using namespace std;
 
// Function to return
// Nth term of the series
int nthTerm(int n)
{
    return n * n - n;
}
 
// Driver code
int main()
{
    // Value of N
    int N = 7;
    cout << nthTerm(N) << endl;
    return 0;
}


C
// C program to implement
// the above approach
#include 
 
// Function to return
// Nth term of the series
int nthTerm(int n)
{
    return n * n - n;
}
 
// Driver code
int main()
{
    // Value of N
    int N = 7;
    printf("%d", nthTerm(N));
    return 0;
}


Java
// Java program to implement
// the above approach
import java.io.*;
 
class GFG {
    public static void main(String[] args)
    {
        // Value of N
        int N = 7;
        System.out.println(nthTerm(N));
    }
 
    // Function to return
    // Nth term of the series
    public static int nthTerm(int n)
    {
        return n * n - n;
    }
}


Python3
# Python code for the above approach
 
# Function to return
# Nth term of the series
def nthTerm(n):
    return n * n - n;
 
# Driver code
 
# Value of N
N = 7;
print(nthTerm(N));
 
# This code is contributed by Saurabh Jaiswal


C#
using System;
 
public class GFG
{
 
  // Function to return
  // Nth term of the series
  public static int nthTerm(int n)
  {
    return n * n - n;
  }
   
  static public void Main()
  {
 
    // Code
    // Value of N
    int N = 7;
    Console.Write(nthTerm(N));
  }
}
 
// This code is contributed by Potta Lokesh


Javascript


输出
42

时间复杂度: O(1)
辅助空间: O(1)