For a given n, write the function lcmSum(n), defined as follows:
For example for :
>> lcmSum = @(n) sum(lcm(n,1:n));
>> lcmSum(20)
ans =
2320
Since the sum grows very fast, please present your answer as a character string array and please limit the cody program size of the function to 150.

Solution Stats

3 Solutions

2 Solvers

Last Solution submitted on Nov 24, 2025

Last 200 Solutions

Solution Comments

Show comments
Loading...