Zumkeller numbers: Difference between revisions

Content deleted Content added
Line 1,666: Line 1,666:


// if we get here and n is odd or n has at least 24 divisors it's a zum!
// if we get here and n is odd or n has at least 24 divisors it's a zum!
// Valid for n < 99504. To test n beyond this bound, comment out this condition.
// Valid for even n < 99504. To test n beyond this bound, comment out this condition.
// And wait all day. Thanks to User:Horsth for taking the time to find this bound!
// And wait all day. Thanks to User:Horsth for taking the time to find this bound!
if (n % 2 || d.size() >= 24)
if (n % 2 || d.size() >= 24)