Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Program to find Cullen Number in C++
In this tutorial, we will be discussing a program to find Cullen Number.
For this we will be provided with an integer. Our task is to find the cullen number at that position using the formula −
2n* n + 1
Example
#include <bits/stdc++.h>
using namespace std;
//finding the nth cullen number
unsigned get_cullen(unsigned n){
return (1 << n) * n + 1;
}
int main(){
int n = 2;
cout << get_cullen(n);
return 0;
}
Output
9
Advertisements
