![]() |
|
|
#1 |
|
"Mihai Preda"
Apr 2015
3·457 Posts |
f(k) = number of [prime] factors of 2^k - 1
Can somebody please help me analyze how f(k) depends on k? In particular I'd like to know which Ks produce large values for f(k). Empirically, I have this small list of k with large f(k): ? m=2; for(i=2,300,n=#factor(2^i-1)[,1]; if(n>m, m=n;print(i, " ", n))) 8 3 12 4 20 5 24 6 36 8 48 9 60 11 72 12 120 15 144 17 180 21 288 24 |
|
|
|
|
|
#2 | |
|
"Robert Gerbicz"
Oct 2005
Hungary
101110011002 Posts |
Quote:
With that f(k)>=numdiv(k)-2. Last fiddled with by R. Gerbicz on 2018-09-01 at 11:19 Reason: corrected formula |
|
|
|
|
|
|
#3 | |
|
"Mihai Preda"
Apr 2015
3·457 Posts |
Quote:
So you apply Zsigmondy's theorem with a=2 and b=1? Then it states that 2^k-1 has a factor that doesn't divide any 2^i-1 with i<k. But how do you progress to numdiv(k)? I'd also like to understand how f(k) grows with k for the "best" Ks. Maybe this can be approximated with the growth of numdiv(k)? So, I guess I want to find a simple function g(x) such that limsup(k->inf, f(k)/g(k)) exists, is finite and >0. (I call g(x) a "sup approximation" of f(x)). I venture a guess, would sqrt(log(k)) be such a "sup" approximation of f(k)? or sqrt(k) a "sup" approximation for numdiv(k)? (Apparently, that's one of big-Omega's meanings https://en.wikipedia.org/wiki/Big_O_notation ) Last fiddled with by preda on 2018-09-01 at 12:38 Reason: add big-omega ref |
|
|
|
|
|
|
#4 | ||
|
"Robert Gerbicz"
Oct 2005
Hungary
101110011002 Posts |
Quote:
Quote:
numdiv(n)>2^((1-eps)*log(n)/log(log(n))). [with the base=e] Last fiddled with by R. Gerbicz on 2018-09-01 at 12:55 Reason: minor typo |
||
|
|
|
|
|
#5 |
|
"Mihai Preda"
Apr 2015
3×457 Posts |
According to https://en.wikipedia.org/wiki/Divisor_function
it seems numdiv(k) grows like k^(log(2) / log(log(k))) in the limsup sense. (if I didn't mess something up) Last fiddled with by preda on 2018-09-01 at 13:05 Reason: I did mess up |
|
|
|
|
|
#6 | |
|
"Mihai Preda"
Apr 2015
3·457 Posts |
Quote:
|
|
|
|
|
|
|
#7 |
|
Sep 2009
2·1,039 Posts |
To maximize the number of algebraic factors of 2^k-1 make k twice a primorial, ie make k 2*2*3*5*7*11*13*... 2 occurs twice because 2^(4n+2)+1 has Aurifeuillian factors (2^(2n-1)-2^n+1) and (2^(2n-1)+2^n+1). Raising odd primes to a higher power will add some more factors but fewer than adding another prime.
Chris |
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ECM factors | TObject | Data | 7 | 2012-06-13 14:42 |
| Missing factors at the 'Known Factors' page | MatWur-S530113 | PrimeNet | 11 | 2009-01-21 19:08 |
| factors | ATH | Prime Cullen Prime | 16 | 2007-07-07 13:02 |
| I need some factors | MatWur-S530113 | Math | 21 | 2007-05-12 19:36 |
| 100 P-1 factors... | dave_0273 | Marin's Mersenne-aries | 5 | 2004-12-24 12:54 |