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

A367509
a(n) = Sum_{d|n} (2*d+1)^n.
3
3, 34, 370, 7267, 161294, 4960812, 170861562, 7019201348, 322728071069, 16705828227476, 952809758091074, 59628239376008854, 4052555153020570590, 297587425607933152700, 23465266173840431204452, 1978033864507607364591749, 177482997121587371955312038
OFFSET
1,1
LINKS
FORMULA
a(n) = Sum_{k=0..n} 2^k * binomial(n,k) * sigma_k(n).
PROG
(PARI) a(n) = sumdiv(n, d, (2*d+1)^n);
CROSSREFS
Sequence in context: A268802 A284891 A231593 * A134491 A045727 A105713
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 21 2023
STATUS
approved