login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A135978
Primes p such that 2^p-1 has exactly 2 prime factors.
7
11, 23, 37, 41, 59, 67, 83, 97, 101, 103, 109, 131, 137, 139, 149, 167, 197, 199, 227, 241, 269, 271, 281, 293, 347, 373, 379, 421, 457, 487, 523, 727, 809, 881, 971, 983, 997, 1061, 1063
OFFSET
1,1
COMMENTS
a(40)>=1277. - Amiram Eldar, Sep 29 2018
MATHEMATICA
k = {}; Do[If[ ! PrimeQ[2^Prime[n] - 1], c = FactorInteger[2^Prime[n] - 1]; d = Length[c]; If[d == 2, AppendTo[k, Prime[n]]]], {n, 1, 40}]; k
KEYWORD
nonn,more
AUTHOR
Artur Jasinski, Dec 09 2007
EXTENSIONS
a(17)-a(37) from Arkadiusz Wesolowski, Jan 26 2012
a(38)-a(39) from Amiram Eldar, Sep 29 2018
STATUS
approved