nextprod

Port of Julia's nextprod


License
Unlicense
Install
pip install nextprod==1.0

Documentation

nextprod.py

A pure-Python direct port of Julia's nextprod. Very useful when you want to pick FFT lengths with small prime factors, and much more.

API def nextprod(a: List[int], x: int) -> int returns the next integer greater than or equal to x whose factors are the entries of a.

Installation $ pip install nextprod

Usage

from nextprod import nextprod
nextprod([2, 3, 5, 7], 1123) # 1125