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.

A034675 Sum of n-th powers of divisors of 144.

Original entry on oeis.org

15, 403, 31031, 3543517, 464378915, 64178802493, 9070067614091, 1294620020196997, 185637589303481315, 26676789058694821933, 3837572548050547502651, 552334249790915518944277, 79516409977044969123349715
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A018302 (divisors of 144).

Programs

  • Magma
    [DivisorSigma(n, 144): n in [0..20]]; // Vincenzo Librandi, Apr 17 2014
  • Mathematica
    With[{d144=Divisors[144]},Table[Total[d144^n],{n,0,15}]] (* Harvey P. Dale, Mar 11 2012 *)
    Total[#^Range[0, 20]&/@Divisors[144]] (* Vincenzo Librandi, Apr 17 2014 *)
    DivisorSigma[Range[0,15],144] (* Harvey P. Dale, Feb 26 2022 *)