Omega-rad resonance numbers
Numbers m such that rad(m) * omega(m) = m.
Formal Definition
Structural Analysis & Motivation
This is the nearest sibling of A396594. The designation "Omega-rad resonance numbers" stems from a structural resonance between the radical of a number and its distinct prime factor count. The radical rad(n) captures the unique prime factors, while ω(n) counts the distinct prime factors. The equality n = rad(n) * ω(n) indicates a precise balance between these two measures.
Linked Articles
Together with M. De Vlieger, we wrote an extensive article on the structural properties of these numbers, generating a full family of related sequences (10+) and providing a comprehensive analysis of their distribution and properties. The article is available at this link.
Official Comments
Primes p are terms since rad(p) * omega(p) = p * 1 = p.
Prime powers p^k (k > 1) are never terms since p * 1 != p^k.
Composite terms classified by r = omega(m):
- r = 2: m = 4*p for odd primes p (e.g., 12, 20, 28, 44).
- r = 3: m = 9*p*q for distinct primes p, q != 3 (e.g., 90).
- r = 4: m = 8*p*q*s for distinct odd primes p, q, s (e.g., 840).
Sequence Chart
Data
Computational Implementations
PYTHON
from math import prod
from sympy import primefactors
def ok(m): return len(f := primefactors(m)) * prod(f) == m
print([m for m in range(1, 200) if ok(m)]) Mathematica
q[m_] := Module[{p = FactorInteger[m][[;; , 1]]}, Length[p] * Times @@ p == m]; q[1] = False; Select[Range[200], q] (* _Amiram Eldar_, Jun 21 2026 *) Cross-References
See also OEIS entries: Cf A000040 A001221 A007947 A065512