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

A069914
a(n) = Sum_{d|n} (d-1)*sigma(n/d).
1
0, 1, 2, 6, 4, 15, 6, 23, 16, 27, 10, 64, 12, 39, 42, 72, 16, 98, 18, 110, 60, 63, 22, 213, 48, 75, 84, 156, 28, 245, 30, 201, 96, 99, 102, 380, 36, 111, 114, 357, 40, 345, 42, 248, 248, 135, 46, 618, 96, 278, 150, 294, 52, 478, 162, 501, 168, 171, 58, 924, 60, 183
OFFSET
1,3
LINKS
FORMULA
a(n) = A060640(n) - A007429(n).
G.f.: Sum_{k>=1} sigma(k) * x^(2*k) / (1 - x^k)^2. - Ilya Gutkovskiy, Aug 19 2021
MATHEMATICA
Table[Plus @@ (DivisorSigma[1, ds = Divisors[n]]*(n/ds - 1)), {n, 62}] (* Ivan Neretin, May 17 2015 *)
PROG
(PARI) a(n) = sumdiv(n, d, (d-1)*sigma(n/d)) \\ Michel Marcus, Jun 17 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, May 04 2002
STATUS
approved