cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A183074 Prime numbers p such that 2^p - 1 is composite and each of its prime divisors has the form 4j + 3.

Original entry on oeis.org

43, 79, 193, 311, 331, 349, 389, 557, 577, 631, 647, 1103
Offset: 1

Views

Author

Stuart Clary, Dec 23 2010

Keywords

Comments

Needed factorizations are in the Cunningham Project.

Examples

			43 is in this sequence because 2^43 - 1 = 431 * 9719 * 2099863, and each of those primes has the form 4j + 3.
		

Crossrefs

Programs

  • 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 *)

Formula

A183078(n) = 2^a(n) - 1.

Extensions

a(12) from Amiram Eldar, Feb 18 2019