Test whether two numbers are amicable, meaning that the sum of the proper divisors of each number is equal to the other number.
Example: 220 and 284 are amicable numbers because the proper divisors of 220 are 1,2,4,5,10,11,20,22,44,55,110 and their sum is 284, while the proper divisors of 284 are 1,2,4,71,142 and their sum is 220.
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers80
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15805 Solvers
-
Convert a numerical matrix into a cell array of strings
2514 Solvers
-
Generate N equally spaced intervals between -L and L
953 Solvers
-
398 Solvers
-
247 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
use of divisors is not allowed.
I think it's because divisors is part of a toolbox, I did not set it up not to allow it.
@cdeliu I have solved another problem in Community and I still am unable to see the best solution. Could you help to give advice on this.
If divisors function is not allowed, you should somehow generate these divisors. The best solution uses the mod function.