RosettaCodeData/Task/Arithmetic-Rational/Wren/arithmetic-rational.wren

10 lines
288 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
import "./math" for Int
import "./rat" for Rat
2023-07-01 11:58:00 -04:00
System.print("The following numbers (less than 2^19) are perfect:")
for (i in 2...(1<<19)) {
var sum = Rat.new(1, i)
for (j in Int.properDivisors(i)[1..-1]) sum = sum + Rat.new(1, j)
if (sum == Rat.one) System.print(" %(i)")
}