Dado un número entero N , la tarea es encontrar el N-ésimo término de la serie
3, 11, 31, 69, . . . . . hasta el término N.
Ejemplos:
Entrada: N = 3
Salida: 31Entrada: N = 6
Salida: 223
Acercarse:
De la serie dada, encuentre la fórmula para el término N-ésimo :
1er término = 1 ^ 3 + (1 + 1) = 3
2do término = 2 ^ 3 + (2 + 1) = 11
3er término = 3 ^ 3 + (3 + 1) = 31
4to término = 4 ^ 3 + (4 + 1) = 69
.
.
Enésimo término = n ^ 3 + (n + 1)
El término N de la serie dada se puede generalizar como:
T norte = norte ^ 3 + (n + 1)
Ilustración:
Entrada: N = 5
Salida: 131
Explicación:
T N = n ^ 3 + (n + 1)
= 5 ^ 3 + (5 + 1)
= 131
A continuación se muestra la implementación del enfoque anterior:
C++
// C++ program to find nth // term of the series #include <iostream> using namespace std; // Function to return nth // term of the series int find_nth_Term(int n) { return n * n * n + (n + 1); } // Driver code int main() { // Find given nth term int n = 5; // Function call cout << find_nth_Term(n) << endl; return 0; }
Java
// Java code for the above approach import java.io.*; class GFG { // Function to return nth // term of the series static int find_nth_Term(int n) { return n * n * n + (n + 1); } // Driver code public static void main(String[] args) { // Find given nth term int n = 5; // Function call System.out.println(find_nth_Term(n)); } } // This code is contributed by Potta Lokesh
Python
# Python program to find nth # term of the series # Function to return nth # term of the series def find_nth_Term(n): return n * n * n + (n + 1) # Driver code # Find given nth term n = 5 # Function call print(find_nth_Term(n)) # This code is contributed by Samim Hossain Mondal.
C#
// C# program to find nth // term of the series using System; class GFG { // Function to return nth // term of the series static int find_nth_Term(int n) { return n * n * n + (n + 1); } // Driver code public static int Main() { // Find given nth term int n = 5; // Function call Console.WriteLine(find_nth_Term(n)); return 0; } } // This code is contributed by Taranpreet
Javascript
<script> // Javascript program to find nth // term of the series // Function to return nth // term of the series function find_nth_Term(n) { return n * n * n + (n + 1); } // Driver code // Find given nth term let n = 5; // Function call document.write(find_nth_Term(n)) // This code is contributed by gfgking. </script>
131
Tiempo Complejidad: O(1)
Espacio Auxiliar: O(1)
Publicación traducida automáticamente
Artículo escrito por geekygirl2001 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA