Program to check if N is a Hexadecagonal Number
Last Updated :
01 Dec, 2022
Given an integer N, the task is to check if N is a Hexadecagonal Number or not. If the number N is an Hexadecagonal Number then print "Yes" else print "No".
Hexadecagonal Number is class of figurate number and a perfect squares. It has 16-sided polygon called Hexadecagon or Hexakaidecagon. The nth Hexadecagonal Number counts the sixteen number of dots and all others dots are surrounding to its successive layer.The first few Hexadecagonal Numbers are 1, 16, 45, 88, 145, 216...
Examples:
Input: N = 16
Output: Yes
Explanation:
Second hexadecagonal number is 16.
Input: N = 30
Output: No
Approach:
1. The Kth term of the hexadecagonal number is given as
K^{th} Term = \frac{14*K^{2} - 12*K}{2}
2. As we have to check that the given number can be expressed as a Hexadecagonal Number or not. This can be checked as:
=> N = \frac{14*K^{2} - 12*K}{2}
=> K = \frac{12 + \sqrt{112*N + 144}}{28}
3. If the value of K calculated using the above formula is an integer, then N is a Hexadecagonal Number.
4. Else N is not a Hexadecagonal Number.
Below is the implementation of the above approach:
C++
// C++ program for the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to check if N is a
// hexadecagonal number
bool ishexadecagonal(int N)
{
float n
= (12 + sqrt(112 * N + 144))
/ 28;
// Condition to check if the
// number is a hexadecagonal number
return (n - (int)n) == 0;
}
// Driver Code
int main()
{
// Given Number
int N = 16;
// Function call
if (ishexadecagonal(N)) {
cout << "Yes";
}
else {
cout << "No";
}
return 0;
}
Java
// Java program for the above approach
import java.lang.Math;
class GFG{
// Function to check if N is a
// hexadecagonal number
public static boolean ishexadecagonal(int N)
{
double n = (12 + Math.sqrt(112 * N +
144)) / 28;
// Condition to check if the
// number is a hexadecagonal number
return (n - (int)n) == 0;
}
// Driver code
public static void main(String[] args)
{
// Given number
int N = 16;
// Function call
if (ishexadecagonal(N))
{
System.out.println("Yes");
}
else
{
System.out.println("No");
}
}
}
// This code is contributed by divyeshrabadiya07
Python3
# Python3 program for the above approach
from math import sqrt
# Function to check if N is
# a hexadecagonal number
def ishexadecagonal(N):
n = (12 + sqrt(112 * N + 144)) / 28;
# Condition to check if the number
# is a hexadecagonal number
return (n - int(n)) == 0;
# Driver code
if __name__ == "__main__":
# Given number
N = 16;
# Function call
if (ishexadecagonal(N)):
print("Yes");
else:
print("No");
# This code is contributed by AnkitRai01
C#
// C# program for the above approach
using System;
class GFG{
// Function to check if N is a
// hexadecagonal number
public static bool ishexadecagonal(int N)
{
double n = (12 + Math.Sqrt(112 * N +
144)) / 28;
// Condition to check if the
// number is a hexadecagonal number
return (n - (int)n) == 0;
}
// Driver code
public static void Main(string[] args)
{
// Given number
int N = 16;
// Function call
if (ishexadecagonal(N))
{
Console.Write("Yes");
}
else
{
Console.Write("No");
}
}
}
// This code is contributed by rutvik_56
JavaScript
<script>
// javascript program for the above approach
// Function to check if N is a
// hexadecagonal number
function ishexadecagonal( N)
{
let n
= (12 + Math.sqrt(112 * N + 144))
/ 28;
// Condition to check if the
// number is a hexadecagonal number
return (n - parseInt(n)) == 0;
}
// Driver Code
// Given Number
let N = 16;
// Function Call
if (ishexadecagonal(N)) {
document.write( "Yes");
}
else {
document.write( "No");
}
// This code contributed by Rajput-Ji
</script>
Time Complexity: O(logN) because sqrt() function is being used
Auxiliary Space: O(1)
Similar Reads
Program to check if N is a Heptadecagonal Number Given an integer N, the task is to check if it is a Heptadecagonal Number or not. If the number N is an Heptadecagonal Number then print "Yes" else print "No". Heptadecagonal Number is class of figurate number. It has 17-sided polygon called heptadecagon. The N-th heptadecagonal number counts the se
4 min read
Program to check if N is a Hendecagonal Number Given an integer N, the task is to check if N is a Hendecagonal Number or not. If the number N is a Hendecagonal Number then print "Yes" else print "No" Hendecagonal Number is a figurate number that extends the concept of triangular and square numbers to the decagon(11-sided polygon). The nth hendec
4 min read
Program to check if N is a Decagonal Number Given a number N, the task is to check if N is a Decagonal Number or not. If the number N is an Decagonal Number then print "Yes" else print "No". Decagonal Number is a figurate number that extends the concept of triangular and square numbers to the decagon (10-sided polygon). The nth decagonal numb
4 min read
Program to check if N is a Enneadecagonal Number Given a number N, the task is to check if N is an Enneadecagonal Number or not. If the number N is an Enneadecagonal Number then print "Yes" else print "No". Enneadecagonal Number is a 19-sided polygon in mathematics. It belongs to a class of figurative number. The number contains the number of dots
4 min read
Program to check if N is a Dodecagonal Number Given a number N, the task is to check if N is a Dodecagonal Number or not. If the number N is a Dodecagonal Number then print "Yes" else print "No". dodecagonal number represent Dodecagonal(12 sides polygon).The first few dodecagonal numbers are 1, 12, 33, 64, 105, 156, 217... Examples: Input: N =
4 min read