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

A353802
Multiplicative with a(p^e) = sigma(sigma(p^e)).
10
1, 4, 7, 8, 12, 28, 15, 24, 14, 48, 28, 56, 24, 60, 84, 32, 39, 56, 42, 96, 105, 112, 60, 168, 32, 96, 90, 120, 72, 336, 63, 104, 196, 156, 180, 112, 60, 168, 168, 288, 96, 420, 84, 224, 168, 240, 124, 224, 80, 128, 273, 192, 120, 360, 336, 360, 294, 288, 168, 672, 96, 252, 210, 128, 288, 784, 126, 312, 420, 720
OFFSET
1,2
FORMULA
a(n) = Product_{p^e||n} sigma(sigma(p^e)), where n = Product_{p^e||n}, with each p^e the maximal power of prime p that divides n.
a(n) = A051027(n) + A353803(n).
a(n) = A353804(n) * A353806(n).
PROG
(PARI)
A051027(n) = sigma(sigma(n));
A353802(n) = { my(f = factor(n)); prod(k=1, #f~, A051027(f[k, 1]^f[k, 2])); };
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, May 08 2022
STATUS
approved