In article <jh5ksi$23u$
1...@dont-email.me>,
puz...@cotpi.com says...
>
> What is the largest integer n such that n! can not be expressed
> as the sum of n distinct factors of itself?
There is none largest.
Proof by induction according to the following scheme
(mathematical details left to the imagination)
3! = 3 + 2 + 1
4! = 12 + 8 + 3 + 1 (multiplying by 4 but splitting 4*1 as 3 + 1)
5! = 60 + 40+ 15 + 4 + 1 (multiplying by 5 but splitting 5*1 as 4 + 1)
etc
This works because if w divides n! then (n+1)*w divides (n+1)!
also (n+1)*w >= (n+1) > n and > 1
and (n+1) = n + 1, and n divides (n+1)! since n divides n!
so at stage n+1 the new list of numbers are indeed divisors, are n+1 in
number, and are distinct.
HTH
JJ