Data update
This commit is contained in:
parent
81fd053722
commit
52a6ef48dd
10248 changed files with 63654 additions and 6775 deletions
7
Task/Arithmetic-Rational/Julia/arithmetic-rational.jl
Normal file
7
Task/Arithmetic-Rational/Julia/arithmetic-rational.jl
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
using Primes
|
||||
divisors(n) = foldl((a, (p, e)) -> vcat((a * [p^i for i in 0:e]')...), factor(n), init=[1])
|
||||
|
||||
isperfect(n) = sum(1 // d for d in divisors(n)) == 2
|
||||
|
||||
lo, hi = 2, 2^19
|
||||
println("Perfect numbers between ", lo, " and ", hi, ": ", collect(filter(isperfect, lo:hi)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue