📌  相关文章
📜  程序找到系列3、12、29、54、86、128、177、234,…的Nth项。

📅  最后修改于: 2021-04-27 19:09:53             🧑  作者: Mango

给定数字N。任务是编写一个程序来查找以下系列的第N个术语:

例子:

Input: N = 4
Output: 54
For N = 4
4th Term = (4 * 4 * 4 - 3 * 4 + 2) 
         = 54

Input: N = 10
Output: 371

方法:本系列的广义第N个术语:

nth\: Term\: of\: the\: series\: = 4*n^2-3*n+2

以下是所需的实现:

C++
// C++ program to find the N-th term of the series:
// 3, 12, 29, 54, 86, 128, 177, 234, .....
#include 
#include 
using namespace std;
 
// calculate Nth term of series
int nthTerm(int n)
{
    return 4 * pow(n, 2) - 3 * n + 2;
}
 
// Driver code
int main()
{
    int N = 4;
 
    cout << nthTerm(N) << endl;
 
    return 0;
}


Java
// Java program to find the N-th term of the series:
// 3, 12, 29, 54, 86, 128, 177, 234, ..... 
 
public class GFG {
     
    // calculate Nth term of series
    static int nthTerm(int n)
    {
        return 4 * (int)Math.pow(n, 2) - 3 * n + 2 ;
    }
       
    // Driver code
    public static void main(String args[])
    {
        int N = 4;
           
       System.out.println(nthTerm(N));
     
    }
    // This Code is contributed by ANKITRAI1
}


Python3
# Python3 program to find the
# N-th term of the series:
# 3, 12, 29, 54, 86, 128, 177, 234, .....
 
# calculate Nth term of series
def nthTerm(n):
 
    return 4 * pow(n, 2) - 3 * n + 2
 
# Driver code
N = 4
print(nthTerm(N))
 
# This code is contributed by
# Sanjit_Prasad


C#
// C# program to find the
// N-th term of the series:
// 3, 12, 29, 54, 86, 128, 177, 234,...
using System;
 
class GFG
{
 
// calculate Nth term of series
static int nthTerm(int n)
{
    return 4 * (int)Math.Pow(n, 2) -
                        3 * n + 2 ;
}
 
// Driver code
public static void Main()
{
    int N = 4;
     
    Console.WriteLine(nthTerm(N));
}
}
 
// This Code is contributed
// by inder_verma


PHP


Javascript


输出:
54

时间复杂度: O(1)