📜  四孔数

📅  最后修改于: 2021-04-29 15:25:51             🧑  作者: Mango

给定数N ,任务是找到N四孔菌数。

例子:

方法:第N个四触角数由下式给出:

  • 侧多边形的第N个项= \frac{((s-2)n^2 - (s-4)n)}{2}
  • 因此42个面的多边形的第N个项是

下面是上述方法的实现:

C++
// C++ implementation for the
// above approach
#include 
using namespace std;
 
// Function to find the
// nth Tetracontadigonal Number
int TetracontadigonalNum(int n)
{
    return (40 * n * n - 38 * n) / 2;
}
 
// Driver Code
int main()
{
    int n = 3;
    cout << TetracontadigonalNum(n);
 
    return 0;
}


Java
// Java implementation for the
// above approach
import java.util.*;
class GFG{
 
// Function to find the
// nth Tetracontadigonal Number
static int TetracontadigonalNum(int n)
{
    return (40 * n * n - 38 * n) / 2;
}
 
// Driver Code
public static void main(String[] args)
{
    int n = 3;
    System.out.print(TetracontadigonalNum(n));
}
}
 
// This code is contributed by Rajput-Ji


Python3
# Python3 implementation for the
# above approach
 
# Function to find the
# nth tetracontadigonal number
def TetracontadigonalNum(n):
 
    return int((40 * n * n - 38 * n) / 2)
 
# Driver Code
n = 3
print (TetracontadigonalNum(n))
 
# This code is contributed by PratikBasu


C#
// C# implementation for the
// above approach
using System;
class GFG{
 
// Function to find the
// nth Tetracontadigonal Number
static int TetracontadigonalNum(int n)
{
    return (40 * n * n - 38 * n) / 2;
}
 
// Driver Code
public static void Main()
{
    int n = 3;
    Console.Write(TetracontadigonalNum(n));
}
}
 
// This code is contributed by Code_Mech


Javascript


输出:
123

参考: https : //en.wikipedia.org/wiki/Tetracontadigon