Given a number N, the task is to check if N is a Centered Pentagonal Number or not. If the number N is a Centered Pentagonal Number then print “Yes” else print “No”.
Centered Pentagonal Number is a centered figurate number that represents a pentagon with a dot in the center and other dots surrounding it in pentagonal layers successively. The first few Centered Pentagonal Number are 1, 6, 16, 31, 51, 76, 106 …
Examples:
Input: N = 6
Output: Yes
Explanation:
Second Centered pentagonal number is 6.
Input: N = 20
Output: No
Approach:
1. The Kth term of the Centered Pentagonal Number is given as

2. As we have to check that the given number can be expressed as a Centered Pentagonal Number or not. This can be checked as:
=> 
=> 
3. If the value of K calculated using the above formula is an integer, then N is a Centered Pentagonal Number.
4. Else the number N is not a Centered Pentagonal Number.
Below is the implementation of the above approach:
C++
#include <bits/stdc++.h>
using namespace std;
bool isCenteredpentagonal( int N)
{
float n
= (5 + sqrt (40 * N - 15))
/ 10;
return (n - ( int )n) == 0;
}
int main()
{
int N = 6;
if (isCenteredpentagonal(N)) {
cout << "Yes" ;
}
else {
cout << "No" ;
}
return 0;
}
|
Java
import java.util.*;
class GFG{
static boolean isCenteredpentagonal( int N)
{
float n = ( float ) (( 5 + Math.sqrt( 40 * N -
15 )) / 10 );
return (n - ( int )n) == 0 ;
}
public static void main(String[] args)
{
int N = 6 ;
if (isCenteredpentagonal(N))
{
System.out.print( "Yes" );
}
else
{
System.out.print( "No" );
}
}
}
|
Python3
import numpy as np
def isCenteredpentagonal(N):
n = ( 5 + np.sqrt( 40 * N - 15 )) / 10
return (n - int (n)) = = 0
N = 6
if (isCenteredpentagonal(N)):
print ( "Yes" )
else :
print ( "No" )
|
C#
using System;
class GFG{
static bool isCenteredpentagonal( int N)
{
float n = ( float ) ((5 + Math.Sqrt(40 * N -
15)) / 10);
return (n - ( int )n) == 0;
}
public static void Main( string [] args)
{
int N = 6;
if (isCenteredpentagonal(N))
{
Console.Write( "Yes" );
}
else
{
Console.Write( "No" );
}
}
}
|
Javascript
<script>
function isCenteredpentagonal(N)
{
var n = ((5 + Math.sqrt(40 * N -
15)) / 10);
return (n - parseInt(n) == 0);
}
var N = 6;
if (isCenteredpentagonal(N))
{
document.write( "Yes" );
}
else
{
document.write( "No" );
}
</script>
|
Time Complexity: O(logN) because it is using inbuilt sqrt function
Auxiliary Space: O(1)
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
28 Nov, 2022
Like Article
Save Article