Talk:Zumkeller numbers: Difference between revisions

→‎Why this limitation in c++: first occurrences of non Zumkeller numbers with many divisors like 58896 with 30 divisors
(→‎Why this limitation in c++: first occurrences of non Zumkeller numbers with many divisors like 58896 with 30 divisors)
Line 4:
if (n % 2 || d.size() >= 24)
return true;</pre>
99504 has 2830 divisors and is not a zumkeller number.<BR>
Testet with GO version:
<lang go>func main() {
Line 29:
99500 99504 99510 99512 99516 </pre>
 
Checked the first 100,000 zumkeller numbers.<BR>
 
First occurence of Non-Zumkeller number with count of divisors
<pre>
Div
count number
12 738
16 7544
18 3492
20 56816
24 14184
30 58896
36 236448</pre>
[[user horsth|Horsth]] 06:56, 9 May 2021 (UTC)
Anonymous user