Aliquot sequence classifications: Difference between revisions

Content added Content deleted
(→‎{{header|zkl}}: additional solution)
(→‎{{header|zkl}}: Incomplete - would help in last classification.)
Line 651: Line 651:


=={{header|zkl}}==
=={{header|zkl}}==
{{incomplete|zkl|"...or if any term of the sequence is greater than 2**47 = 140737488355328."}}
<lang zkl>fcn properDivs(n){ [1.. (n + 1)/2 + 1].filter('wrap(x){ n%x==0 and n!=x }) }
<lang zkl>fcn properDivs(n){ [1.. (n + 1)/2 + 1].filter('wrap(x){ n%x==0 and n!=x }) }
fcn aliquot(k){ //-->Walker
fcn aliquot(k){ //-->Walker