You are given a number n, the task is to find nth octagonal number. Also, find the Octagonal series till n.
An octagonal number is the figure number that represent octagonal. Octagonal numbers can be formed by placing triangular numbers on the four sides of a square. Octagonal number is calculated by using the formula (3n2 - 2n).
Examples :
Input : 5
Output : 65
Input : 10
Output : 280
Input : 15
Output : 645
C++
// C++ program to find
// nth octagonal number
#include <bits/stdc++.h>
using namespace std;
// Function to calculate
//octagonal number
int octagonal(int n)
{
// Formula for finding
// nth octagonal number
return 3 * n * n - 2 * n;
}
// Driver function
int main()
{
int n = 10;
cout << n << "th octagonal number :"
<< octagonal(n);
return 0;
}
Java
// Java program to find
// nth octagonal number
import java.util.*;
import java.lang.*;
public class GfG {
// Function to calculate
//octagonal number
public static int octagonal(int n)
{
// Formula for finding
// nth octagonal number
return 3 * n * n - 2 * n;
}
// Driver function
public static void main(String argc[])
{
int n = 10;
System.out.println(n + "th octagonal" +
" number :" + octagonal(n));
}
}
/* This code is contributed by Sagar Shukla */
Python
# Python program to find
# nth octagonal number
def octagonal(n):
return 3 * n * n - 2 * n
# Driver code
n = 10
print(n, "th octagonal number :",
octagonal(n))
C#
// C# program to find nth octagonal number
using System;
public class GfG {
// Function to calculate
//octagonal number
public static int octagonal(int n)
{
// Formula for finding
// nth octagonal number
return 3 * n * n - 2 * n;
}
// Driver function
public static void Main()
{
int n = 10;
Console.WriteLine(n + "th octagonal"
+ " number :" + octagonal(n));
}
}
/* This code is contributed by Vt_m */
PHP
<?php
// PHP program to find
// nth octagonal number
// Function to calculate
//octagonal number
function octagonal($n)
{
// Formula for finding
// nth octagonal number
return 3 * $n * $n - 2 * $n;
}
// Driver Code
$n = 10;
echo $n , "th octagonal number :"
, octagonal($n);
// This code is contributed by Vt_m .
?>
JavaScript
<script>
// JavaScript program to convert
// Binary code to Gray code
// Function to calculate
//octagonal number
function octagonal(n)
{
// Formula for finding
// nth octagonal number
return 3 * n * n - 2 * n;
}
// Driver code
let n = 10;
document.write(n + "th octagonal" +
" number :" + octagonal(n));
// This code is contributed by code_hunt.
</script>
Output :
10th octagonal number : 280
Time Complexity: O(1)
Auxiliary Space: O(1)
Given number n, find the octagonal series till n.
We can also find the octagonal series. Octagonal series contains the points on octagonal.
Octagonal series 1, 8, 21, 40, 65, 96, 133, 176, 225, 280, . . .
C++
// C++ program to display the
// octagonal series
#include <bits/stdc++.h>
using namespace std;
// Function to display
// octagonal series
void octagonalSeries(int n)
{
// Formula for finding
//nth octagonal number
for (int i = 1; i <= n; i++)
// Formula for computing
// octagonal number
cout << (3 * i * i - 2 * i);
}
// Driver function
int main()
{
int n = 10;
octagonalSeries(n);
return 0;
}
Java
// Java program to find
// nth octagonal number
import java.util.*;
import java.lang.*;
public class GfG {
// Function to display octagonal series
public static void octagonalSeries(int n)
{
// Formula for finding
//nth octagonal number
for (int i = 1; i <= n; i++)
// Formula for computing
// octagonal number
System.out.print(3 * i * i - 2 * i);
}
// Driver function
public static void main(String argc[])
{
int n = 10;
octagonalSeries(n);
}
/* This code is contributed by Sagar Shukla */
}
Python
# Python program to find
# nth octagonal number
def octagonalSeries(n):
for i in range(1, n + 1):
print(3 * i * i - 2 * i,
end = ", ")
# Driver code
n = 10
octagonalSeries(n)
C#
// C# program to find
// nth octagonal number
using System;
public class GfG {
// Function to display octagonal series
public static void octagonalSeries(int n)
{
// Formula for finding
//nth octagonal number
for (int i = 1; i <= n; i++)
// Formula for computing
// octagonal number
Console.Write(3 * i * i - 2 * i + ", ");
}
// Driver function
public static void Main()
{
int n = 10;
octagonalSeries(n);
}
}
/* This code is contributed by Vt_m */
PHP
<?php
// PHP program to display the
// octagonal series
// Function to display
// octagonal series
function octagonalSeries($n)
{
// Formula for finding
// nth octagonal number
for ($i = 1; $i <= $n; $i++)
// Formula for computing
// octagonal number
echo (3 * $i * $i - 2 * $i),",";
}
// Driver Code
$n = 10;
octagonalSeries($n);
// This code is contributed by Vt_m .
?>
JavaScript
<script>
// Javascript program to display the
// octagonal series
// Function to display
// octagonal series
function octagonalSeries(n)
{
// Formula for finding
// nth octagonal number
for (let i = 1; i <= n; i++)
// Formula for computing
// octagonal number
document.write(3 * i * i - 2 * i + ", ");
}
// Driver Code
let n = 10;
octagonalSeries(n);
// This code is contributed by _saurabh_jaiswal
</script>
Output :
1, 8, 21, 40, 65, 96, 133, 176, 225, 280
Time Complexity: O(n)
Auxiliary Space: O(1)
Similar Reads
Centered Octagonal Number Given a number n, find the nth centered octagonal number. A centered octagonal number represents an octagon with a dot in the center and others dots surrounding the center dot in the successive octagonal layer. Examples : Input : 2 Output : 9 Input : 5 Output : 81 Centered Octagonal n-th Number is g
4 min read
Pentadecagonal Number Given a number N, the task is to find the Nth Pentadecagonal number. A Pentadecagonal number is a figurate number that extends the concept of triangular and square numbers to the pentadecagon(a 15-sided polygon). The Nth pentadecagonal number counts the number of dots in a pattern of N nested pentad
3 min read
n'th Pentagonal Number Given an integer n, find the nth Pentagonal number. The first three pentagonal numbers are 1, 5, and 12 (Please see the below diagram). The n'th pentagonal number Pn is the number of distinct dots in a pattern of dots consisting of the outlines of regular pentagons with sides up to n dots when the p
7 min read
Program to check if N is a Octagonal Number Given a number N, the task is to check if N is an Octagonal Number or not. If the number N is an Octagonal Number then print "Yes" else print "No". Octagonal Number is the figure number that represent octagonal. Octagonal Numbers can be formed by placing triangular numbers on the four sides of a squ
4 min read
Find the sum of the first N Centered Octagonal Number Given a number N, the task is to find the sum of the first N Centered Octagonal Numbers. The first few Centered Octagonal numbers are 1, 9, 25, 49, 81, 121, 169, 225, 289, 361 ... Examples: Input: N = 3 Output: 35 Explanation: 1, 9 and 25 are the first three Centered Octagonal numbers. Input: N = 5
4 min read