Given a positive integer n , does there always exists integers a 1 , a 2 , … a n , b greater than 1 such that a 1 ! a 2 ! … a n ! = b !
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.
I found out that 3 ! ! = 6 !
There are solutions for every n where all the a i are distinct. The following equations give the first few examples:
3 ! ⋅ 5 ! = 6 !
3 ! ⋅ 5 ! ⋅ 7 1 9 ! = 7 2 0 !
3 ! ⋅ 5 ! ⋅ 7 1 9 ! ⋅ ( 7 2 0 ! − 1 ) ! = ( 7 2 0 ! ) !
Log in to reply
Of course! Very nice. And you could start those with any factorial (eg 4 ! ⋅ 2 3 ! = 2 4 ! etc).
Problem Loading...
Note Loading...
Set Loading...
Some nice small examples are 1 0 ! = 6 ! ⋅ 7 ! = 3 ! ⋅ 5 ! ⋅ 7 ! .
In general, we have ( 2 n − 1 ) ! = ( 2 ! ) n − 1 ⋅ ( 2 n − 2 ) !
so the answer is yes . For example, with n = 5 , we have 1 6 ! = 2 ! ⋅ 2 ! ⋅ 2 ! ⋅ 2 ! ⋅ 1 5 ! .
Of course, we don't need to choose powers of 2 ; any power of a factorial will work in the same way (eg 2 1 6 ! = 3 ! ⋅ 3 ! ⋅ 3 ! ⋅ 2 1 5 ! ), but these solutions aren't fundamentally different.
Whether there are solutions for every n if we insist the a i are distinct, I don't know. Bonus question?