login
A382219
Product of the largest and smallest exponents in the prime factorization of n.
1
1, 1, 1, 4, 1, 1, 1, 9, 4, 1, 1, 2, 1, 1, 1, 16, 1, 2, 1, 2, 1, 1, 1, 3, 4, 1, 9, 2, 1, 1, 1, 25, 1, 1, 1, 4, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 4, 4, 2, 1, 2, 1, 3, 1, 3, 1, 1, 1, 2, 1, 1, 2, 36, 1, 1, 1, 2, 1, 1, 1, 6, 1, 1, 2, 2, 1, 1, 1, 4, 16, 1, 1, 2, 1, 1, 1, 3, 1, 2
OFFSET
1,4
COMMENTS
The asymptotic density of the occurrences of k = 1, 2, ... in this sequence is 1/zeta(2) for k = 1 and 1/zeta(k+1) - 1/zeta(k) for k >= 2, and the asymptotic mean of this sequence is A033150, the same densities and mean as in A051903, since a(n) = A051903(n) for nonpowerful numbers n (A052485) whose asymptotic density is 1. - Amiram Eldar, Mar 28 2025
FORMULA
If n = Product (p_j^k_j) then a(n) = min{k_j} * max{k_j}.
a(n) = A051903(n) * A051904(n) for n > 1.
MATHEMATICA
Table[Max @@ (#[[2]] & /@ FactorInteger[n]) Min @@ (#[[2]] & /@ FactorInteger[n]), {n, 90}]
PROG
(PARI) a(n) = if(n == 1, 1, my(e = factor(n)[, 2]); vecmin(e) * vecmax(e)); \\ Amiram Eldar, Mar 28 2025
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 19 2025
STATUS
approved