cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A367552 a(n) = Sum_{d|n} (d^2-1)^n.

Original entry on oeis.org

0, 9, 512, 50706, 7962624, 1838528498, 587068342272, 248158343164707, 134217728134217728, 90438270904261473426, 74300837068800000000000, 73119374851006048408704228, 84922087747184192618514874368, 114943537906488487820754156670578
Offset: 1

Views

Author

Seiichi Manyama, Nov 22 2023

Keywords

Crossrefs

Programs

  • 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 *)
  • PARI
    a(n) = sumdiv(n, d, (d^2-1)^n);

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * sigma_{2*k}(n).
Showing 1-1 of 1 results.