Determine the largest integer n that is divisible by all positive integers (strictly) less than 2 n .
As an example, for n = 3 6 , 2 n = 3 , and all positive integers less than it ( 1 and 2 ) divide n , so it is one candidate. Find the largest one.
If there is no such largest integer (there's an arbitrarily large one), answer 0 instead.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Great solution, hunting down another way to bound l ( x ) .
Note that we can reduce the cases slightly by working on k ≥ 1 9 and showing that l ( k ) > 2 × 3 × 5 × 7 × 1 1 × 1 3 × 1 7 k 1 7 > 4 ( k + 1 ) 2 . It seems to me that you used 210, because you were restricting to k ≥ 7 at the start, which resulted in the bound of k ≥ 3 0 .
Does "largest common denominator" mean "lowest common multiple"?
Log in to reply
yes...I think I typed that without any conscious thought and it turned out that way. I wonder if l ( k ) is an interesting arithmetic function to examine... It there another way(interpretation) to calculate it without using primes.
Log in to reply
Of course. It is well studied function, since it tracks prime powers extremely well. For example, an assertion equivalent to the Riemann hypothesis is: ∣ lo g ( a ( n ) ) − n ∣ < ( n ) ∗ lo g ( n ) 2 .
See OEIS A003418 for more details.
Note: This is not a rigorous solution.
First, observe that n = 1 8 0 is a solution, since 2 n ≈ 6 . 7 0 8 2 , and 1 , 2 , 3 , 4 , 5 , 6 all divide 1 8 0 . Thus, for any solution n > 1 8 0 , we must have 2 n > 6 and thus 1 , 2 , 3 , 4 , 5 , 6 must all divide n . In other words, 6 0 divides n .
The next multiple of 6 0 is 2 4 0 . This doesn't satisfy the condition, since 2 2 4 0 ≈ 7 . 7 4 5 9 and 7 doesn't divide 2 4 0 . Any larger solution must thus be divisible by 7 as well; in other words, 4 2 0 divides n , so n ≥ 4 2 0 .
Now, since n ≥ 4 2 0 , we need 8 to divide n . This means we get something larger that divides n , namely 8 4 0 .
Now, since n ≥ 8 4 0 , we need 1 1 to divide n . This means we get something larger that divides n , namely 8 4 0 ⋅ 1 1 .
Now, since n ≥ 8 4 0 ⋅ 1 1 , we need 2 3 to divide n . This means we get something larger that divides n , namely 8 4 0 ⋅ 1 1 ⋅ 2 3 .
The pattern is clear. For n ≥ 8 4 0 , we will always be able to find a prime number less than 2 n but doesn't divide the current lower bound, thus multiplying the lower bound by the prime number. We can repeat this again. Since every time 2 n at least doubles, by Bertrand's postulate we're guaranteed the existence of a new prime every step. This means there can be no greater n satisfying this.
This "proves" that the largest n is 1 8 0 .
This is rigorous. Sometimes you just need to check "small enough cases" until you get far out enough to apply a general result. Such an approach is typical for such questions, especially when they rely on applying a Bertrand Postulate-like result.
Problem Loading...
Note Loading...
Set Loading...
A "solution" without Bertrand's Postulate:
Let l ( x ) denote the lowest common multiple of all the positive integers ≤ x . Although not rigorious for now, we should have a pretty good feeling that l ( 2 n ) ≤ n is only true for a finite number of n . So far, we are quite certain that there exists a nonzero answer for this question.
We will show the following: l ( k ) > 4 ( k + 1 ) 2 for all k ≥ 7 . Note that this deduces l ( 2 n ) > n + 1 for n ≥ 2 5 6 and should verify our speculation above.
Note that l ( k ) = ∏ i = 1 π ( k ) p i ⌊ lo g p i k ⌋ where p i , π ( x ) denotes the i th prime and the prime counting function respectively. we can bound this using ⌊ x ⌋ > x − 1 and obtain l ( k ) > ∏ i = 1 π ( k ) p i k π ( k ) > 2 1 0 k 4 > 4 ( k + 1 ) 2 . The last inequality is true for k ≥ 3 0 , thus we have proven our assertion for this range. One can check by hand the validity for 7 ≤ k ≤ 2 9 (a finite number of cases).
To solve the current problem, we take k = 6 and l ( 6 ) = 6 0 and our corresponding n should lie inbetween 1 2 2 , 1 4 2 so 1 8 0 is our answer.