|
Search: id:A089162
|
|
|
| A089162 |
|
Prime factors of Mersenne numbers. |
|
+0 1
|
|
| 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; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
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).
|
|
PROGRAM
|
(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 this_sequence A016047 A003260 A138865
Adjacent sequences: A089159 A089160 A089161 this_sequence A089163 A089164 A089165
|
|
KEYWORD
|
easy,nonn
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)gmail.com), Dec 06 2003
|
|
|
Search completed in 0.002 seconds
|