login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A089162 Prime factors of Mersenne numbers. 0
3, 7, 31, 127, 23, 89, 8191, 131071, 524287, 47, 178481, 233, 1103, 2089, 2147483647, 223, 616318177, 13367, 164511353, 431, 9719, 2099863, 2351, 4513, 13264529, 6361, 69431, 20394401, 179951, 3203431780337, 2305843009213693951, 193707721 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

All factors of Mersenne numbers 2^p - 1, where p is prime, are = 1 (mod p). See link for a proof of the statement if q divides M_p = 2^p-1 then q = 2kp + 1 for some integer p.

LINKS

R. P. Brent, New factors of Mersenne numbers

Chris Caldwell, MersenneNumbers History.

C. K. Caldwell, The Prime Glossary, Mersenne divisor

EXAMPLE

The 16th Mersenne number 2^53-1 has the three prime factors 6361,69431,20394401.

See tail end of second row in the sequence. Each factor is = 1 (mod 53).

PROG

(PARI) mersenne(b, n, d) = { c=0; forprime(x=2, n, c++; y = b^x-1; f=factor(y); v=component(f, 1); ln = length(v); if(ln>=d, print1(v[d]", ")); ) }

CROSSREFS

Cf. A016047.

Cf. A003260.

Sequence in context: A105765 A061095 A103901 * A016047 A003260 A152058

Adjacent sequences:  A089159 A089160 A089161 * A089163 A089164 A089165

KEYWORD

easy,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Dec 06 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 17:13 EST 2012. Contains 205828 sequences.