mersenneforum.org

mersenneforum.org (https://www.mersenneforum.org/index.php)
-   Miscellaneous Math (https://www.mersenneforum.org/forumdisplay.php?f=56)
-   -   Mersenne(prime exponents) factorization (https://www.mersenneforum.org/showthread.php?t=13927)

science_man_88 2010-09-19 16:15

Mersenne(prime exponents) factorization
 
I found that floor((2^p-1)/p^2) is the multiplication of all 2*k values possible for any unlimited number of factors if such exist. I realize why this is true but I want to try and get it more specific to find k values that are the true k values needed.

cmd 2010-10-13 14:16

[URL="http://www.youtube.com/watch?v=S0z1Mo7O6dE"]python[/URL]

[code]
p=2**13-1
k=p*p
while 1:
print(k)
k+=p*10

[/code]

(try)

science_man_88 2010-10-13 14:21

[QUOTE=cmd;233314][URL="http://www.youtube.com/watch?v=S0z1Mo7O6dE"]python[/URL]

[code]
p=2**13-1
k=p*p
while 1:
print(k)
k+=p*10

[/code]

(try)[/QUOTE]

it's been so long I can't remember how I got it but I can safely say that's not it.

cmd 2010-10-13 14:32

single piece
 
[QUOTE=cmd;233314][URL="http://www.youtube.com/watch?v=S0z1Mo7O6dE"]python[/URL]

[code]
p=2**13-1
k=p*p
while 1:
print(k)
k+=p*10

[/code]

[/QUOTE]

[code]
p=2**17-1
k=p*p
while 1:
print(k)
k+=p*10
[/code]

(retry)

follow music


All times are UTC. The time now is 04:24.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.