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.

A183073 Prime numbers p such that each prime divisor of 2^p - 1 has the form 4j + 3.

Original entry on oeis.org

2, 3, 5, 7, 13, 17, 19, 31, 43, 61, 79, 89, 107, 127, 193, 311, 331, 349, 389, 521, 557, 577, 607, 631, 647, 1103
Offset: 1

Views

Author

Stuart Clary, Dec 23 2010

Keywords

Comments

The exponents of the Mersenne primes (A000043) are contained in this sequence.
Needed factorizations are in the Cunningham Project.
Also in the sequence are 1279, 2203, 2281, 2909, 3217, 4253. - Amiram Eldar, Feb 18 2019

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
    Select[Prime[Range[30]],And@@(IntegerQ[(#-3)/4]&/@Transpose[ FactorInteger[ 2^#-1]][[1]])&] (* Increase the value of Range to increase the number of terms generated, but processing times grow very quickly as the value increases. *)(* Harvey P. Dale, Jan 01 2013 *)

Formula

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

Extensions

a(26) from Amiram Eldar, Feb 18 2019