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

A179307
a(n) = Sum_{d|n} C(n,d)*sigma(d)*sigma(n/d).
1
1, 9, 16, 89, 36, 504, 64, 2193, 1474, 5544, 144, 56024, 196, 84912, 83376, 674257, 324, 2833128, 400, 10842624, 3764224, 25404696, 576, 283622136, 1913486, 436839984, 243868120, 2955876880, 900, 13385040624, 1024, 57008721777, 9290026080, 126014768064, 338361024
OFFSET
1,2
COMMENTS
Logarithmic derivative of A179306.
MATHEMATICA
a[n_] := DivisorSum[n, Binomial[n, #] * DivisorSigma[1, #] * DivisorSigma[1, n/#] &]; Array[a, 35] (* Amiram Eldar, Aug 18 2023 *)
PROG
(PARI) {a(n)=sumdiv(n, d, binomial(n, d)*sigma(d)*sigma(n/d))}
CROSSREFS
Sequence in context: A267763 A340164 A308248 * A014720 A378060 A138238
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 10 2010
EXTENSIONS
a(33)-a(35) from Amiram Eldar, Aug 18 2023
STATUS
approved