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

A345274
a(n) = Sum_{d|n} (n-d)^tau(n/d).
0
0, 1, 4, 31, 16, 650, 36, 2633, 548, 6650, 100, 1782390, 144, 28754, 38660, 799583, 256, 24192515, 324, 47154588, 160520, 195002, 484, 78424725898, 14224, 391370, 471124, 387887498, 784, 500247950884, 900, 912432417, 1049960, 1187234, 1338020, 78818475807611, 1296, 1875818
OFFSET
1,3
COMMENTS
If p is prime, a(p) = Sum_{d|p} (p-d)^tau(p/d) = (p-1)^2 + 0^1 = (p-1)^2.
EXAMPLE
a(10) = Sum_{d|10} (10-d)^tau(10/d) = 9^4 + 8^2 + 5^2 + 0^1 = 6650.
MATHEMATICA
Table[Sum[(n - k)^DivisorSigma[0, n/k] (1 - Ceiling[n/k] + Floor[n/k]), {k, n}], {n, 50}]
CROSSREFS
Cf. A000005 (tau), A174937.
Sequence in context: A103307 A196248 A196246 * A025416 A043082 A371034
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jun 12 2021
STATUS
approved