![]() |
|
|
#1 |
|
"Mihai Preda"
Apr 2015
3×457 Posts |
I made this experimental observation, that numbers of the form:
2^(0*c) + 2^(1*c) + 2^(2c) + ... + 2^(k*c) are smooth. (by this I mean that the largest factor in their factorization is very small; they also have many factors). Somebody can explain me why? |
|
|
|
|
|
#2 | |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
1000000001112 Posts |
Quote:
In its simplest form for c=1, every consecutive-consecutive double pair are coprime. Summing up bunch of coprimes will result in a number of small factors, but could also include some very large prime factors. For c>1, you end up with multiples of the simplest form c= 1. ETA One important variable which makes a great difference is if the total number of addend terms is odd or even. See below for a parallel. http://www.mersenneforum.org/showpos...19&postcount=9 Last fiddled with by a1call on 2018-08-30 at 05:16 |
|
|
|
|
|
|
#3 | |
|
"Mihai Preda"
Apr 2015
101010110112 Posts |
Quote:
But I did test the odd/even hypothesis; in pari-gp (which I barely know): f(c,n)=for(m=1,n,print(#factor(sum(k=0,m,2^(k*c)))[,1])) f(10, 16) 2 4 4 4 9 6 6 9 9 9 13 6 12 11 9 4 ? f(15, 16) 3 3 8 4 8 8 12 7 10 7 18 5 18 11 18 8 ? f(20, 16) 2 7 4 8 11 10 7 17 14 13 17 13 14 22 11 12 Thus I don't see much support for odd/even. |
|
|
|
|
|
|
#4 |
|
"Rashid Naimi"
Oct 2015
Remote to Here/There
40078 Posts |
Try it with s primorial initial valve and add your terms to it.
This will exaggerate the effect. I predict you should see a frequency of 4 cycles. Last fiddled with by a1call on 2018-08-30 at 06:47 |
|
|
|
|
|
#5 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
36×13 Posts |
Quote:
Is it because \({2^{c(k+1)} - 1}\) has tons of algebraic factors, maybe? Someone played paper darts too much in the 8th grade math class? |
|
|
|
|
|
|
#6 | |
|
"Mihai Preda"
Apr 2015
3×457 Posts |
Quote:
But what happens when 2^c - 1 does not divide \(2^{c(k+1)} - 1\), how are the factors affected? In which situation is the number of factors maximized -- e.g. is it good for k+1 to be a power of 2? is it good or bad for c to be even? or c to be a power of 2? Thanks! |
|
|
|
|
|
|
#7 | |
|
"Serge"
Mar 2008
Phi(4,2^7658614+1)/2
36·13 Posts |
Quote:
Well the factors of 2^c-1 are taken away. There are still tons left. |
|
|
|
|
|
|
#8 |
|
"Mihai Preda"
Apr 2015
3×457 Posts |
|
|
|
|
|
|
#9 | ||
|
"Mihai Preda"
Apr 2015
3×457 Posts |
Quote:
Quote:
|
||
|
|
|
|
|
#10 | |
|
"Mihai Preda"
Apr 2015
101010110112 Posts |
Quote:
N(c, k) = sum(i=0, k, 2^(c*i)) == (2^(c*(k+1)) - 1) / (2^c - 1) When k == 2^p - 1, then: N(c, k) == prod(i=0, p-1, 2^(c * 2^i) + 1) Let's take an example, N(c, 7) = (2^(8c) - 1)/(2^c - 1) = (2^c + 1) * (2^(2c) + 1) * (2^(4c) + 1) So the number of factors of N(c, k) is the sum of the nb. of factors of 2^(c*2^i) + 1, with i from 0 to log2(k). This may turn out to be O(log(k)^2), and seems to be larger for highly composite c. Also, I confirm that indeed the number of factors of N(c, k) seems to be larger for odd k than for even k. |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Not smooth enough numbers | Sam Kennedy | Factoring | 5 | 2012-11-10 07:54 |
| Special Smooth numbers | Citrix | Other Mathematical Topics | 46 | 2012-03-06 14:55 |
| Smooth and rough numbers | CRGreathouse | Math | 3 | 2009-05-25 05:26 |
| Finding smooth numbers | Citrix | Math | 9 | 2005-12-31 11:07 |
| Smooth Numbers | Yamato | Math | 1 | 2005-12-11 11:09 |