The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A343569 If n = Product (p_j^k_j) then a(n) = Product (2*(p_j^k_j + 1)), with a(1) = 1. 1
1, 6, 8, 10, 12, 48, 16, 18, 20, 72, 24, 80, 28, 96, 96, 34, 36, 120, 40, 120, 128, 144, 48, 144, 52, 168, 56, 160, 60, 576, 64, 66, 192, 216, 192, 200, 76, 240, 224, 216, 84, 768, 88, 240, 240, 288, 96, 272, 100, 312, 288, 280, 108, 336, 288, 288, 320, 360, 120, 960, 124, 384, 320, 130 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = usigma(n) * 2^omega(n).
a(n) = Sum_{d|n, gcd(d, n/d) = 1} usigma(d) * usigma(n/d).
a(n) = Sum_{d|n, gcd(d, n/d) = 1} d * 2^omega(d) * 2^omega(n/d).
a(n) = Sum_{d|n, gcd(d, n/d) = 1} A343525(d).
MATHEMATICA
a[1] = 1; a[n_] := Times @@ (2 (#[[1]]^#[[2]] + 1) & /@ FactorInteger[n]); Table[a[n], {n, 64}]
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1] = 2*f[k, 1]^f[k, 2] + 2; f[k, 2] = 1); factorback(f); \\ Michel Marcus, Apr 20 2021
CROSSREFS
Sequence in context: A155776 A243826 A295318 * A331549 A184111 A330976
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Apr 20 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)