You can put this solution on YOUR website! What is the largest prime factor of 1 + 2 + 3 + 4 + 5 + ... + 60?
--------
Use S(n)=(n/2)(1st + last) to get the sum.
---
S(60) = (60/2)(1+60) = 30*61 = 1830
----------
Now find the largest prime factor in 1830
Divide by 2 till you can't.
Then divide by 3 till you can't.
Then by 5
Then by 7
etc.
---
I get an answer of 61
==========================
Cheers,
Stan H.