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
LINKS
FORMULA
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
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 19 2025
STATUS
approved
