Module docstring
{"# Natural number logarithms
This file defines two ℕ-valued analogs of the logarithm of n with base b:
* log b n: Lower logarithm, or floor log. Greatest k such that b^k ≤ n.
* clog b n: Upper logarithm, or ceil log. Least k such that n ≤ b^k.
These are interesting because, for 1 < b, Nat.log b and Nat.clog b are respectively right and
left adjoints of Nat.pow b. See pow_le_iff_le_log and le_pow_iff_clog_le.
","### Floor logarithm ","### Ceil logarithm ","### Computating the logarithm efficiently "}