![]() |
![]() |
#1 |
Just call me Henry
"David"
Sep 2007
Cambridge (GMT/BST)
5·1,171 Posts |
![]()
I just noticed that 10!=6!*7!.
Are there any other instances where x!=y!*z! with y and z > 1? If not can anyone prove this? |
![]() |
![]() |
![]() |
#2 |
Just call me Henry
"David"
Sep 2007
Cambridge (GMT/BST)
5×1,171 Posts |
![]()
Just realised that there is an infinite number of examples where (n!)!=n!*(n!-1)!
Are there any more apart from this trivial form? |
![]() |
![]() |
![]() |
#3 |
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
![]()
well one condition on this occuring is that one of the factorials involved has to involve the last prime below the factorial being divided by other factorials so for example the condition for example the reason 10!=6!*7! works is because one of the factorials involves 7 a prime number no solution can leave this out. also a key part is that the other factorial has to include possible factorizations of the rest so 8*9*10 = 8*90 = (2*4)*(5*6*3) which means it can barely fall below sqrt(number) when trying to find solutions to number! okay I made an error but I was trying to limit the cases.
Last fiddled with by science_man_88 on 2015-04-02 at 00:53 |
![]() |
![]() |
![]() |
#4 |
"Forget I exist"
Jul 2009
Dumbassville
26×131 Posts |
![]() |
![]() |
![]() |
![]() |
#5 |
Einyen
Dec 2003
Denmark
210·3 Posts |
![]() |
![]() |
![]() |
![]() |
#6 |
"Forget I exist"
Jul 2009
Dumbassville
26·131 Posts |
![]()
using pari I've checked for solutions using up to the last 10000 factorials before a factorial up to 30000! I think:
Code:
factorfactorial(e=0)={ a=parvector(10000,n,(n+e)!); parfor(x=10,#a, d=precprime(x);x-d, c, if(c==0||c>=10000,next()); b=setintersect(vector(c-1,t,a[x]/a[x+t-(c+1)]),a); if(b==[],, print(x","b) ) ); e=e+#a; print(e); factorfactorial(e) }; Last fiddled with by science_man_88 on 2015-04-02 at 13:58 |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Factorial primes | Unregistered | Information & Answers | 2 | 2011-09-11 21:32 |
Factorial | mfgoode | Puzzles | 6 | 2007-07-24 14:24 |
Factorial in C programming | Unregistered | Programming | 7 | 2005-04-09 20:13 |
factorial puzzle (requires maths) | graeme | Puzzles | 7 | 2003-08-19 20:40 |
Factorial problem | xilman | Puzzles | 12 | 2003-07-20 20:22 |