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”).

A175433
a(n) = the smallest number m such that sigma(n) = m^k for any k >= 1 (sigma = A000203).
2
1, 3, 2, 7, 6, 12, 2, 15, 13, 18, 12, 28, 14, 24, 24, 31, 18, 39, 20, 42, 2, 6, 24, 60, 31, 42, 40, 56, 30, 72, 2, 63, 48, 54, 48, 91, 38, 60, 56, 90, 42, 96, 44, 84, 78, 72, 48, 124, 57, 93, 72, 98, 54, 120, 72, 120, 80, 90, 60, 168, 62, 96, 104, 127, 84, 12, 68, 126, 96, 12
OFFSET
1,2
COMMENTS
a(n) = A000203(n) ^ (1 / A175432(n)).
a(n) = A052410(A000203(n)). - Antti Karttunen, Nov 06 2017
LINKS
EXAMPLE
For n = 7, a(7) = 2 because sigma(7) = 8 = 2^3.
MATHEMATICA
Array[#^(1/Apply[GCD, FactorInteger[#][[All, -1]]]) &@ DivisorSigma[1, #] &, 105] (* Michael De Vlieger, Nov 05 2017 *)
PROG
(PARI) A175433(n) = { my(s=sigma(n), m); ispower(s, , &m); if(m, m, s); }; \\ Antti Karttunen, Nov 05 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, May 10 2010
EXTENSIONS
Extended by Ray Chandler, Aug 20 2010
STATUS
approved