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!)
A343525 If n = Product (p_j^k_j) then a(n) = Product (2*p_j^k_j + 1), with a(1) = 1. 2
1, 5, 7, 9, 11, 35, 15, 17, 19, 55, 23, 63, 27, 75, 77, 33, 35, 95, 39, 99, 105, 115, 47, 119, 51, 135, 55, 135, 59, 385, 63, 65, 161, 175, 165, 171, 75, 195, 189, 187, 83, 525, 87, 207, 209, 235, 95, 231, 99, 255, 245, 243, 107, 275, 253, 255, 273, 295, 119, 693, 123, 315, 285, 129, 297, 805 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The unitary analog of A060640.
LINKS
FORMULA
a(n) = Sum_{d|n, gcd(d, n/d) = 1} d * usigma(n/d).
a(n) = Sum_{d|n, gcd(d, n/d) = 1} d * 2^omega(d).
MAPLE
a:= n-> mul(2*i[1]^i[2]+1, i=ifactors(n)[2]):
seq(a(n), n=1..80); # Alois P. Heinz, Apr 18 2021
MATHEMATICA
a[1] = 1; a[n_] := Times @@ ((2 #[[1]]^#[[2]] + 1) & /@ FactorInteger[n]); Table[a[n], {n, 66}]
PROG
(PARI) a(n) = my(f=factor(n)); for (k=1, #f~, f[k, 1] = 2*f[k, 1]^f[k, 2]+1; f[k, 2]=1); factorback(f); \\ Michel Marcus, Apr 18 2021
CROSSREFS
Sequence in context: A346368 A029664 A188793 * A184102 A285915 A075329
KEYWORD
nonn,look,mult
AUTHOR
Ilya Gutkovskiy, Apr 18 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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)