SmoothNumbers

Documentation for SmoothNumbers.

SmoothNumbers.prattMethod
pratt(n::Integer)

Computes the first n 3-smooth numbers and returns them as a Vector{Int}.

source
SmoothNumbers.prattMethod
pratt(::Type{T}, n::Integer) where T<:Integer

Computes the first n 3-smooth numbers and returns them as a Vector{T}.

source
SmoothNumbers.smoothMethod
smooth(k::Integer, n::Integer)

Computes the first n k-smooth numbers and returns them as a Vector{typeof(k)}.

source
SmoothNumbers.smoothMethod
smooth(::Type{T}, k::Integer, n::Integer) where T<:Integer

Computes the first n k-smooth numbers and returns them as a Vector{T}.

source
SmoothNumbers.with_basesMethod
with_bases(bases::AbstractVector{T}, n::Integer) where T<:Integer

Computes the first n numbers that can be written as a product of powers of the bases.

The result is a Vector with the same element type as bases.

source