Documentation

FormalConjectures.ForMathlib.Data.Nat.Full

def Nat.Full (k n : ) :

A natural number $n$ is said to be $k$-full (or $k$-powerful) if for every prime factor $p$ of $n$, the $k$-th power $p^k$ also divides $n$.

Equations
Instances For
    @[reducible, inline]
    abbrev Nat.Powerful :
    Prop

    A Powerful number is a natural number $n$ where for every prime divisor $p$, $p^2$ divides $n$. Powerful numbers are also known as "squareful", "square-full", or "$2$-full".

    Equations
    Instances For
      theorem Nat.full_of_le_full (k n : ) {m : } (hk : k m) (h : m.Full n) :
      k.Full n
      theorem Nat.not_full_of_prime_mod_prime_sq (n k : ) {p : } (hp : Prime p) (h : n % p ^ (k + 1) = p) :
      ¬(k + 1).Full n

      If $n \equiv p \pmod{p ^ (k + 1)}$, for a prime $p$ then $n$ is not $(k + 1)$-full.

      Simproc to compute the set Nat.primeFactors.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For