Hendecagonal number Last Updated : 19 May, 2022 Comments Improve Suggest changes Like Article Like Report Given a number n, the task is to find the nth Hendecagonal number. A Hendecagonal number is a figurate number that extends the concept of triangular and square numbers to the decagon (Eleven -sided polygon). The nth hendecagonal number counts the number of dots in a pattern of n nested decagons, all sharing a common corner, where the ith hendecagon in the pattern has sides made of i dots spaced one unit apart from each other.Examples: Input : 2 Output :11Input :6 Output :141 Formula for nth hendecagonal number : \begin{math} H_{n}=((9n^2)-7n)/2 \end{math} C++ // C++ program to find nth // Hendecagonal number #include <bits/stdc++.h> using namespace std; // Function to find // Hendecagonal number int hendecagonal_num(int n) { // Formula to calculate nth // Hendecagonal number return (9 * n * n - 7 * n) / 2; } // Driver Code int main() { int n = 3; cout << n << "rd Hendecagonal number: "; cout << hendecagonal_num(n); cout << endl; n = 10; cout << n << "th Hendecagonal number: "; cout << hendecagonal_num(n); return 0; } C // C program to find nth // Hendecagonal number #include <stdio.h> // Function to find // Hendecagonal number int hendecagonal_num(int n) { // Formula to calculate nth // Hendecagonal number return (9 * n * n - 7 * n) / 2; } // Driver Code int main() { int n = 3; printf("%drd Hendecagonal number: ",n); printf("%d\n",hendecagonal_num(n)); n = 10; printf("%dth Hendecagonal number: ",n); printf("%d\n",hendecagonal_num(n)); return 0; } // This code is contributed by kothavvsaakash. Java // Java program to find nth // Hendecagonal number import java.io.*; class GFG { // Function to find // Hendecagonal number static int hendecagonal_num(int n) { // Formula to calculate nth // Hendecagonal number return (9 * n * n - 7 * n) / 2; } // Driver Code public static void main (String[] args) { int n = 3; System.out.print(n + "rd Hendecagonal " + "number: "); System.out.println(hendecagonal_num(n)); n = 10; System.out.print(n + "th Hendecagonal " + "number: "); System.out.println(hendecagonal_num(n)); } } // This code is contributed by ajit Python3 # Program to find nth # Hendecagonal number # Function of Hendecagonal # number def hendecagonal_num(n) : # Formula to calculate nth # Hendecagonal number & # return it into main function. return (9 * n * n - 7 * n) // 2 # Driver Code if __name__ == '__main__' : n = 3 print(n,"rd Hendecagonal number : " , hendecagonal_num(n)) n = 10 print(n,"th Hendecagonal number : " , hendecagonal_num(n)) # This code is contributed by ajit C# // C# program to find nth // Hendecagonal number using System; class GFG { // Function to find // Hendecagonal number static int hendecagonal_num(int n) { // Formula to calculate nth // Hendecagonal number return (9 * n * n - 7 * n) / 2; } // Driver Code static public void Main () { int n = 3; Console.Write(n + "rd Hendecagonal number: "); Console.WriteLine( hendecagonal_num(n)); n = 10; Console.Write(n + "th Hendecagonal number: "); Console.WriteLine( hendecagonal_num(n)); } } // This code is contributed by aj_36 PHP <?php // PHP program to find nth // Hendecagonal number // Function to find // Hendecagonal number function hendecagonal_num($n) { // Formula to calculate nth // Hendecagonal number return (9 * $n * $n - 7 * $n) / 2; } // Driver Code $n = 3; echo $n , "th Hendecagonal number: "; echo hendecagonal_num($n); echo "\n"; $n = 10; echo $n , "th Hendecagonal number: "; echo hendecagonal_num($n); // This code is contributed by m_kit ?> JavaScript <script> // Javascript program to find nth // Hendecagonal number // Function to find // Hendecagonal number function hendecagonal_num(n) { // Formula to calculate nth // Hendecagonal number return (9 * n * n - 7 * n) / 2; } let n = 3; document.write(n + "rd Hendecagonal number: "); document.write(hendecagonal_num(n) + "</br>"); n = 10; document.write(n + "th Hendecagonal number: "); document.write(hendecagonal_num(n)); // This code is contributed by divyesh072019. </script> Output : 3th Hendecagonal number: 30 10th Hendecagonal number: 415 Time Complexity: O(1)Auxiliary Space: O(1)Reference: https://en.wikipedia.org/wiki/Polygonal_number Comment More infoAdvertise with us Next Article Heptadecagonal number J jit_t Follow Improve Article Tags : Mathematical Geometric DSA Practice Tags : GeometricMathematical Similar Reads Hexadecagonal number Given a number n, the task is to find the nth hexadecagonal number. A Hexadecagonal number is class of figurate number and a perfect squares. It has sixteen sided polygon called hexadecagon or hexakaidecagon. The n-th hexadecagonal number count's the sixteen number of dots and all others dots are su 4 min read Enneadecagonal number Given a number n, the task is to find the nth Enneadecagonal number. An Enneadecagonal number is a nineteen-sided polygon in mathematics. It belongs to a class of figurative numbers. The number contains the number of dots and the dots are arranged in a pattern or series. An Enneadecagonal number is 3 min read Heptadecagonal number Given a number n, the task is to find the nth heptadecagonal number . A heptadecagonal number is a class of figurate numbers. It has a seventeen-sided polygon called heptadecagon. The n-th heptadecagonal number countâs the seventeen number of dots and all other dots are surrounding with a common sha 4 min read Dodecagonal number Given a number n, find the nth Dodecagonal number.Dodecagonal numbers represent Dodecagonal (A polygon with 12 sides). Some of the Dodecagonal numbers are: 1, 12, 33, 64, 105, 156, 217, 288, 369, 460, 561, 672, 793, 924.............................Examples : Input : n = 4 Output : 64 Input : n = 9 O 3 min read Heptagonal number Given a number n, the task is to find Nth heptagonal number. A Heptagonal number represents heptagon and belongs to a figurative number. Heptagonal has seven angles, seven vertices, and seven-sided polygon. Examples : Input : 2 Output :7Input :15 Output :540 Few Heptagonal numbers are : 1, 7, 18, 34 3 min read Centered decagonal number Given a number n, find the nth Centered decagonal number . A Centered Decagonal Number is centered figurative number that represents a decagon with dot in center and all other dot surrounding it in successive decagonal form. Source[Wiki]. The first few Centered Decagonal Numbers are : 1, 11, 31, 61, 4 min read Like