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!)
A265708 a(n) = lcm_{d|n} sigma(d) * Sum_{d|n} 1/sigma(d), where sigma(d) represents the sum of divisors of d (A000203(d)). 9
1, 4, 5, 31, 7, 20, 9, 162, 69, 28, 13, 155, 15, 36, 35, 5127, 19, 276, 21, 217, 45, 52, 25, 810, 223, 60, 703, 279, 31, 140, 33, 15536, 65, 76, 63, 2139, 39, 84, 75, 1134, 43, 180, 45, 403, 483, 100, 49, 25635, 521, 892, 95, 465, 55, 2812, 91, 1458, 105, 124 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A069934(n) * Sum_{d|n} 1/A000203(d) = A265709(n) * A069934(n) / A265710(n).
Multiplicative with a(p^e) = (1/1 + ..., + 1/sigma(p^(e-1)) + 1/sigma(p^(e))) * lcm{1, ..., sigma(p^(e-1)), sigma(p^(e))}.
EXAMPLE
For n = 6; divisors d of 6: {1, 2, 3, 6}; sigma(d): {1, 3, 4, 12}; lcm_{d|6} sigma(d) = 12; a(6) = 12/1 + 12/3 + 12/4 + 12/12 = 20.
MATHEMATICA
a[n_] := LCM @@ DivisorSigma[1, Divisors[n]] * DivisorSum[n, 1/DivisorSigma[1, #] &]; Array[a, 100] (* Amiram Eldar, Dec 09 2022 *)
PROG
(Magma) [&+[1/SumOfDivisors(d): d in Divisors(n)] * LCM([SumOfDivisors(d): d in Divisors(n)]): n in [1..100]]
(PARI)
A069934(n) = my(d = divisors(n)); lcm(vector(#d, k, sigma(d[k])));
A265708(n) = (A069934(n) * sumdiv(n, d, 1/sigma(d))); \\ Antti Karttunen, Nov 19 2017
CROSSREFS
Sequence in context: A262034 A124482 A265709 * A224219 A128867 A262031
KEYWORD
nonn,mult
AUTHOR
Jaroslav Krizek, Dec 24 2015
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 13 09:16 EDT 2024. Contains 372504 sequences. (Running on oeis4.)