Numbers which are not the sum of distinct squares: Difference between revisions

(Added Algol 68)
Line 34:
 
=={{header|ALGOL 68}}==
Recursive brute force, using the proof that if 129-324 can be expressed as the sum of distinct squares, then all integers greater than 128 can be so expressed - see the link in the Wren sample.
Recursive brute force.
<syntaxhighlight lang="algol68">
BEGIN # find the integers that can't be expressed as the sum of distinct squares #
3,028

edits