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

A174478
a(n) = Sum_{d|n} d*2^(n/d)*tau(d).
2
2, 12, 20, 56, 52, 168, 156, 432, 614, 1272, 2092, 4784, 8244, 17064, 33160, 67040, 131140, 265092, 524364, 1053616, 2098200, 4202760, 8388700, 16797216, 33554902, 67141944, 134221232, 268503312, 536871028, 1073881488, 2147483772
OFFSET
1,1
COMMENTS
tau(n) = A000005(n) = the number of divisors of n.
LINKS
FORMULA
Logarithmic derivative of A174477.
MATHEMATICA
Table[With[{d=Divisors[n]}, Total[d 2^(n/d) DivisorSigma[0, d]]], {n, 40}] (* Harvey P. Dale, Nov 13 2021 *)
PROG
(PARI) {a(n)=sumdiv(n, d, d*2^(n/d)*sigma(d, 0))}
CROSSREFS
Cf. A174477, A000005 (tau).
Sequence in context: A145622 A266050 A291698 * A331947 A349469 A145634
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 04 2010
STATUS
approved