This is a Rust tool that looks for the smallest number that is not in the The On-Line Encyclopedia of Integer Sequences (OEIS), in an attempt to answer the Interesting number paradox.
Most of the work for this project is implemented in oeis-utils crate.
First, download and extract a copy of the OEIS database from https://oeis.org/stripped.gz
git clone [email protected]:jakevossen5/oeis-min.git
cd oeis-min
cargo run --release -- path/to/stripped
You can also check the work with the bash script by running ./oeis-min.sh /path/to/stripped
.
This depends on ripgrep being in your $PATH
.