login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A304181
If n = Product (p_j^k_j) then a(n) = min{p_j}^min{k_j}.
1
1, 2, 3, 4, 5, 2, 7, 8, 9, 2, 11, 2, 13, 2, 3, 16, 17, 2, 19, 2, 3, 2, 23, 2, 25, 2, 27, 2, 29, 2, 31, 32, 3, 2, 5, 4, 37, 2, 3, 2, 41, 2, 43, 2, 3, 2, 47, 2, 49, 2, 3, 2, 53, 2, 5, 2, 3, 2, 59, 2, 61, 2, 3, 64, 5, 2, 67, 2, 3, 2, 71, 4, 73, 2, 3, 2, 7, 2, 79, 2, 81, 2, 83, 2, 5
OFFSET
1,2
FORMULA
a(n) = A020639(n)^A051904(n).
a(p^k) = p^k where p is a prime.
a(A005117(k)) = A073481(k).
EXAMPLE
a(72) = 4 because 72 = 2^3*3^2, min{2,3} = 2, min{3,2} = 2 and 2^2 = 4.
MATHEMATICA
Table[(FactorInteger[n][[1, 1]])^(Min @@ Last /@ FactorInteger[n]), {n, 85}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 07 2018
STATUS
approved