Saturday, September 10, 2016

number theory - Is 7!=5040 the largest highly composite factorial?



A highly composite number is a natural number  n1  that has more divisors than any smaller natural number  m1.



Checking the  1000  entries in the OEIS-sequence, I noticed that only the following factorials are highly composite :



[1,2,6,24,120,720,5040]





Is it known whether  7!=5040  is the largest highly composite factorial ?




The factorials have some conditions necessary for a number to be highly composite :




  • They contain the first k prime numbers as prime factors.

  • The exponents are non-increasing.


  • The exponent corresponding to the largest prime factor is  1.



So, it is not obvious whether the above list is complete.


Answer



Suppose n20. Trivially, n! is then divisible by 16, so 1316n! is an integer smaller than n!.



Let the prime factorization of n! be n!=2e13e211e513e617e7perr.



Then the prime factorization of 1316n! is 1316n!=2e143e211e513e6+117e6perr.




Then, the number of divisors of n! is σ0(n!)=(e1+1)(e6+1)k1,6(ek+1) and the number of divisors of 1316n! is σ0(1316n!)=(e13)(e6+2)k1,6(ek+1).



Hence, σ0(1316n!)>σ0(n!) iff (e13)(e6+2)>(e1+1)(e6+1) iff e1>4e6+7.



Using the well known formula for the largest power of a prime dividing a factorial, we have



e1=log2nk=1n2k>log2nk=1(n2k1)nn2log2nlog2nn2log2n.



Similarly, e6=log13nk=1n13klog13nk=1n13kn12. Hence, 4e6+7n3+7.




I'll leave it as an exercise to show that n3+7<n2log2n holds for all integers n20.



Therefore, for all integers n20, we have 4e6+7n3+7<n2log2n<e1, and thus, σ0(1316n!)>σ0(n!).



So, n! is not highly composite for n20. Now, it remains to check if any factorials between 7! and 20! are highly composite.



EDIT: From the list of the first 1000 highly composite numbers that OP mentioned, it appears that the 149-th largest highly composite number is 1.49×1017, while 19!1.22×1017. None of the numbers 8!,9!,,19! appear in that list, so 7! is indeed the largest highly composite factorial.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...