Let $n = p_1^{a_1}p_2^{a_2}\cdots p_k^{a_k}$ be the prime factorization of $n$ for some primes such that $p_i < p_{i+1}$. We define the minor prime factor and the dominant prime factor of $n$ as the primes which has the smallest the largest contributions respectively to the value of $n$. Clearly, the dominant and the minor prime factors of $n$ is not necessarily its largest and smallest prime factors. E.g. if $n = 2^8 3^6 5^2 7^2$ then the largest and the smallest prime factors of $n$ are $7$ and $2$ respectively where as its dominant and the minor prime factors are $3$ and $5$ respectively since $3^6 = 729$ is greater than $2^8 = 256, 5^2=25$ and $7^2=49$.
Definition 1: The minor prime factor of $n$ is defined as the prime factor $p_m$ such that $p_m^{a_m} \le p_i^{a_i}$.
Definition 2: If a number as two or more distinct prime factors, then the dominant prime factor of $n$ is defined as the prime factor $p_d$ such that $p_d^{a_d} \ge p_i^{a_i}$ for any $i \ne d$.
Note: If a number has only one distinct prime factor then its minor and its dominant prime factors are the same i.e. $p_m = p_d$.
Since $\frac{a_1 \ln p_1}{\ln n} + \frac{a_2 \ln p_2}{\ln n} + \cdots + \frac{a_k \ln p_k}{\ln n} = 1$ we can say that each term in this sum is the contribution of the respective prime to the value of $\ln n$ and we can ask on and average what is the contribution of the minor/dominant prime to logarithm of a number.
Let $p_d$ be the dominant prime factor of $n$. Experimental data for all $n \le 4 \times 10^{8}$ and the average over several smaller intervals upto $10^{100}$ ; suggests that such that
$$ \lim_{x \to \infty}\frac{1}{x}\sum_{n = 1}^x \frac{a_d\ln p_d}{\ln n} \sim 0.62 $$
Conjecture: The dominant prime factor contributes approximately $62\%$ of the value of the logarithm of natural numbers.
Can this be proved or disproved?
Update 24 Feb 2023: Digging into literature, I read about the Golomb-Dickman Constant whose value $0.6243299$ is suspiciously close to observed mean value of the dominant prime factor. This constant is related to the largest prime factor (not the dominant prime factor) through the Dickman Function.
SageMath Code:
n = 2
step = target = 10^6
r_max1 = r_max2 = 0
while True:
x = prime_factors(n)
max1 = 1
max2 = 1
for factor in x:
p = 1
check = 1
while True:
check = check*factor
if n%check == 0:
p = p + 1
else:
p = p - 1
check = check/factor
if check > max1:
max1 = check
max2 = check
break
if len(x) == 1:
max2 = 1
# print(n,max)
l = ln(n).n()
lmax1 = ln(max1).n()
lmax2 = ln(max2).n()
r_max1 = r_max1 + lmax1/l
r_max2 = r_max2 + lmax2/l
if n == target:
print(n, 'lower_bound:', r_max2/n, 'upper_bound:', r_max1/n, 'mean:', (r_max2/n + r_max1/n)/2)
target = target + step
n = n + 1