Smallest square that begins with n: Difference between revisions

m
→‎{{header|REXX}}: changed program to not show the 50th number.
m (added highlighting and added verbiage.)
m (→‎{{header|REXX}}: changed program to not show the 50th number.)
Line 173:
#= 0 /*initialize the count of found numbers*/
idx= 1
$=; nn= n - 1 /*a list of additive primes (so far). */
do j=1 while #<n nn /*keep searching 'til enough nums found*/
do k=1 until pos(j, k * k)==1 /*compute a square of some number. */
end /*k*/
Line 197:
21 │ 2,116 225 2,304 2,401 25 2,601 2,704 289 2,916 3,025
31 │ 3,136 324 3,364 3,481 35,344 36 3,721 3,844 3,969 400
41 │ 41,209 4,225 4,356 441 45,369 4,624 4,761 484 49 5,041
</pre>