Número nonagonal centrado es un número figurado centrado que representa un nonágono con un punto en el centro y todos los demás puntos que rodean al punto central en capas nogonales sucesivas.
El número nonagonal centrado para n viene dado por
Número nonagonal centrado = (3 * n – 2) * (3 * n – 1) / 2;
https://en.wikipedia.org/wiki/Centered_nonagonal_number
Ejemplos:
Input : n = 10 Output : 406 Input : n = 8 Output : 253
C++
// CPP Program to find // nth centered nonagonal number. #include <bits/stdc++.h> using namespace std; // Function to find nth // centered nonagonal number. int centeredNonagonal(int n) { // Formula to find nth centered // nonagonal number. return (3 * n - 2) * (3 * n - 1) / 2; } // Driver function. int main() { int n = 10; cout << centeredNonagonal(n); return 0; }
Java
// Java Program to find // nth centered nonagonal number. import java.io.*; class GFG { // Function to find nth // centered nonagonal number. static int centeredNonagonal(int n) { // Formula to find nth centered // nonagonal number. return (3 * n - 2) * (3 * n - 1) / 2; } // Driver function. public static void main(String args[]) { int n = 10; System.out.println(centeredNonagonal(n)); } } // This code is contributed by Nikita Tiwari.
Python3
# Python 3 Program to find # nth centered nonagonal number. # Function to find nth # centered nonagonal number def centeredNonagonal(n) : # Formula to find nth centered # nonagonal number. return (3 * n - 2) * (3 * n - 1) // 2 # Driver function. n = 10 print(centeredNonagonal(n)) # This code is contributed # by Nikita Tiwari.
C#
// C# Program to find nth // centered nonagonal number. using System; class GFG { // Function to find nth // centered nonagonal number. static int centeredNonagonal(int n) { // Formula to find nth centered // nonagonal number. return (3 * n - 2) * (3 * n - 1) / 2; } // Driver function. public static void Main() { int n = 10; Console.Write(centeredNonagonal(n)); } } // This code is contributed by vt_m.
PHP
<?php // PHP Program to find nth // centered nonagonal number. // Function to find nth // centered nonagonal number. function centeredNonagonal( $n) { // Formula to find nth centered // nonagonal number. return (3 * $n - 2) * (3 * $n - 1) / 2; } // Driver Code $n = 10; echo centeredNonagonal($n); // This code is contributed by anuj_67. ?>
Javascript
<script> // Javascript Program to find // nth centered nonagonal number. // Function to find nth // centered nonagonal number. function centeredNonagonal(n) { // Formula to find nth centered // nonagonal number. return parseInt((3 * n - 2) * (3 * n - 1) / 2); } // Driver function. let n = 10; document.write(centeredNonagonal(n)); // This code is contributed by souravmahato348. </script>
Producción:
406
Complejidad de tiempo: O(1)
Espacio Auxiliar: O(1)
Dado un número n, hallar series numéricas nogonales centradas hasta n.
También podemos encontrar la serie de números nogonales centrados. La serie de números nogonales centrados contiene los puntos en nogonales centrados.
Número nogonal centrado: 1, 10, 28, 55, 91, 136, 190, 253, 325, 406, 496, 595, 703, 820, 946. . .
C++
// CPP Program find first // n centered nonagonal number. #include <bits/stdc++.h> using namespace std; // Function to find centered // nonagonal number series. int centeredNonagonal(int n) { for (int i = 1; i <= n; i++) { cout << (3 * i - 2) * (3 * i - 1) / 2; cout << " "; } } // Driver function. int main() { int n = 10; centeredNonagonal(n); return 0; }
Java
// Java Program find first // n centered nonagonal number. import java.io.*; class GFG { // Function to find centered // nonagonal number series. static void centeredNonagonal(int n) { for (int i = 1; i <= n; i++) { System.out.print((3 * i - 2) * (3 * i - 1) / 2); System.out.print(" "); } } // Driver function. public static void main(String args[]) { int n = 10; centeredNonagonal(n); } } // This code is contributed // by Nikita Tiwari.
Python3
# Python3 Program find first # n centered nonagonal number # Function to find centered # nonagonal number series def centeredNonagonal(n) : for i in range(1, n + 1) : print( (3 * i - 2) * (3 * i - 1) // 2, end=" ") # Driver function n = 10 centeredNonagonal(n) # This code is contributed by Nikita Tiwari
C#
// C# Program find first // n centered nonagonal number. using System; class GFG { // Function to find centered // nonagonal number series. static void centeredNonagonal(int n) { for (int i = 1; i <= n; i++) { Console.Write((3 * i - 2) * (3 * i - 1) / 2); Console.Write(" "); } } // Driver function. public static void Main() { int n = 10; centeredNonagonal(n); } } // This code is contributed by // by vt_m.
PHP
<?php // PHP Program find first // n centered nonagonal number. // Function to find centered // nonagonal number series. function centeredNonagonal( $n) { for ( $i = 1; $i <= $n; $i++) { echo (3 * $i - 2) * (3 * $i - 1) / 2; echo " "; } } // Driver Code $n = 10; centeredNonagonal($n); // This code is contributed anuj_67. ?>
Javascript
<script> // JavaScript Program find first // n centered nonagonal number. // Function to find centered // nonagonal number series. function centeredNonagonal(n) { for (let i = 1; i <= n; i++) { document.write((3 * i - 2) * (3 * i - 1) / 2); document.write(" "); } } // Driver code let n = 10; centeredNonagonal(n); // This code is contributed by sanjoy_62. </script>
Producción :
1 10 28 55 91 136 190 253 325 406
Complejidad de tiempo: O(n)
Espacio Auxiliar: O(1)
Publicación traducida automáticamente
Artículo escrito por Dharmendra_Kumar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA