Was it helpful?

Question

Program to find Cullen Number in C++

C++Server Side ProgrammingProgramming

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

 Live Demo

#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
raja
Published on 09-Sep-2020 14:57:30
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top