Jean Michel
Jean Michel
Here is a example of two number theory functions made fast by `eachfactor` ``` """ `prime_residues(n)` the numbers less than `n` and prime to `n` julia> [prime_residues(24)] 1-element Vector{Vector{Int64}}: [1,...
A very small issue: in the doc of `radical` it is rightly stated `radical(n::Integer)`. But in the source the function is `radical(n)` without any type restriction. It would be good...
playing around with `Factorizations` I noticed a bug ``` julia> print(factor(24)) Primes.Factorization(2 => 3, 3 => 1) julia> Primes.Factorization(2 => 3, 3 => 1) ERROR: MethodError: no method matching Primes.Factorization(::Pair{Int64,...