A066263 Numbers k such that 2^k + 1 has just two distinct prime factors.
5, 6, 7, 9, 10, 11, 12, 13, 17, 19, 20, 23, 28, 31, 32, 40, 43, 61, 64, 79, 92, 101, 104, 127, 128, 148, 167, 191, 199, 256, 313, 347, 356, 596, 692, 701, 1004, 1228, 1268, 1709, 2617, 3539, 3824, 5807, 10501, 10691, 11279, 12391, 14479, 42737, 83339, 95369
Offset: 1
Keywords
Examples
3 and 4 are not terms because 2^3 + 1 and 2^4 + 1 have only a single prime factor (counted without multiplicity). 6 and 10 are terms because 2^6 + 1 = 5 * 13 and 2^10 + 1 = 5^2 * 41 have two distinct prime factors.
Links
- Giuseppe Coppoletta, Table of n, a(n) for n = 1..63
- Jack Brennen, Primes of the form (4^p+1)/5^t, Seqfan (Mar 15 2017).
- C. Caldwell's The Top Twenty Wagstaff primes.
- Mersennewiki, Factorizations Of Cunningham Numbers C+(2,n) (tables).
- Samuel S. Wagstaff, The Cunningham Project.
- Eric Weisstein's World of Mathematics, Catalan's Conjecture.
- Eric Weisstein's World of Mathematics, Zsigmondy Theorem.
Programs
-
Mathematica
f[n_] := First[ Transpose[ FactorInteger[2^n + 1]]]; Select[ Range[100], Length[f[ # ]] == 2 & ] Select[Range[1300],PrimeNu[2^#+1]==2&] (* Harvey P. Dale, Nov 28 2014 *)
-
PARI
isok(k) = #factor(2^k+1)~ == 2; \\ Michel Marcus, Nov 14 2017
Formula
A001221(2^a(n) + 1) = 2.
Extensions
Edited by Robert G. Wilson v, Jan 03 2002
a(40)-a(52) by Giuseppe Coppoletta, May 02 2017
Comments