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

A367552
a(n) = Sum_{d|n} (d^2-1)^n.
1
0, 9, 512, 50706, 7962624, 1838528498, 587068342272, 248158343164707, 134217728134217728, 90438270904261473426, 74300837068800000000000, 73119374851006048408704228, 84922087747184192618514874368, 114943537906488487820754156670578
OFFSET
1,2
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * sigma_{2*k}(n).
MATHEMATICA
a[n_]:= Sum[(-1)^(n-k)*Binomial[n, k]*DivisorSigma[2*k, n], {k, 0, n}]; Array[a, 14] (* Stefano Spezia, Nov 22 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, (d^2-1)^n);
CROSSREFS
Sequence in context: A112910 A180585 A102909 * A230671 A281443 A367446
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 22 2023
STATUS
approved