Erdős #367: r-full part and the odd-r extension #
For a positive integer m with prime factorization m = ∏ p^{a_p}, and r ≥ 1, the r-full part is B_r(m) = ∏_{p : a_p ≥ r} p^{a_p}.
Main theorem: for odd r ≥ 1 and q ≥ 2, with n = (q^r - 1)^r, (i) B_r(n) = n, (ii) q^r ∣ n + 1, (iii) B_r(n) · B_r(n+1) ≥ n · q^r, (iv) (B_r(n) · B_r(n+1))^r > n^{r+1}.
Definition of the r-full part #
The r-full part of m: the product of prime-power components p^{a_p} of m for which the exponent a_p ≥ r.
Equations
- RFullOdd.rFullPart r m = (Finsupp.filter (fun (p : ℕ) => r ≤ m.factorization p) m.factorization).prod fun (p v : ℕ) => p ^ v
Instances For
Factorization of rFullPart #
theorem
RFullOdd.rFullPart_factorization
(r m : ℕ)
(_hm : m ≠ 0)
:
(rFullPart r m).factorization = Finsupp.filter (fun (p : ℕ) => r ≤ m.factorization p) m.factorization