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.

A034668 Sum of n-th powers of divisors of 48.

Original entry on oeis.org

10, 124, 3410, 131068, 5732210, 264105844, 12441770330, 591961476748, 28294099221410, 1355321291969764, 64989628053819050, 3117943006504850428, 149624153907514522610, 7181073568202394620884, 344670347564106497096570
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A018261 (divisors of 48).

Programs

  • Magma
    [DivisorSigma(n,48): n in [0..15]]; // Vincenzo Librandi, Apr 17 2014
  • Mathematica
    With[{d=Divisors[48]},Table[Total[d^n],{n,0,20}]] (* Harvey P. Dale, Aug 14 2012 *)
    Total[#^Range[0, 20]&/@Divisors[48]] (* Vincenzo Librandi, Apr 17 2014 *)

Formula

a(n) = Sum_{d|48} d^n. - Wesley Ivan Hurt, Dec 29 2023