OFFSET
1,1
COMMENTS
Needed factorizations are in the Cunningham Project.
LINKS
S. S. Wagstaff, Jr., The Cunningham Project.
FORMULA
A183078(n) = 2^a(n) - 1.
EXAMPLE
43 is in this sequence because 2^43 - 1 = 431 * 9719 * 2099863, and each of those primes has the form 4j + 3.
MATHEMATICA
cQ[n_]:=Module[{x=2^n-1}, !PrimeQ[x]&&Union[Mod[Transpose[ FactorInteger[ x]][[1]], 4]]=={3}]; Select[Prime[Range[120]], cQ] (* Harvey P. Dale, Jun 17 2014 *)
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Stuart Clary, Dec 23 2010
EXTENSIONS
a(12) from Amiram Eldar, Feb 18 2019
STATUS
approved