A382219 Product of the largest and smallest exponents in the prime factorization of n.
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
Keywords
Links
Programs
-
Mathematica
Table[Max @@ (#[[2]] & /@ FactorInteger[n]) Min @@ (#[[2]] & /@ FactorInteger[n]), {n, 90}]
-
PARI
a(n) = if(n == 1, 1, my(e = factor(n)[,2]); vecmin(e) * vecmax(e)); \\ Amiram Eldar, Mar 28 2025
Comments