A050920 Cullen primes: primes of the form n*2^n+1.
3, 393050634124102232869567034555427371542904833
Offset: 1
Examples
1 * 2^1 + 1 = 3, which is prime. 141 * 2^141 + 1 = 393050634124102232869567034555427371542904833, which is also prime. The third Cullen prime is approximately 2.677114856136697933736444 * 10^1422.
References
- R. K. Guy, Unsolved Problems in Number Theory, Springer, 1st edition, 1981. See section B20.
Links
- Ray Ballinger, Cullen Primes: Definition and Status.
- Chris K. Caldwell, Cullen Primes.
- Eric Weisstein's World of Mathematics, Cullen Number.
Programs
-
Mathematica
Select[Table[n * 2^n + 1, {n, 5000}], PrimeQ] (* Harvey P. Dale, Dec 14 2014 *)
Comments