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.

A294608 a(n) = Sum_{d|n} d^(d + 1 + n/d).

Original entry on oeis.org

1, 17, 244, 4129, 78126, 1680410, 40353608, 1073758337, 31381061797, 1000000390882, 34522712143932, 1283918474699170, 51185893014090758, 2177953338091847410, 98526125335695332184, 4722366482878235412481, 239072435685151324847154
Offset: 1

Views

Author

Seiichi Manyama, Nov 04 2017

Keywords

Crossrefs

Cf. A294606.

Programs

  • Mathematica
    a[n_] := DivisorSum[n, #^(# + 1 + n/#) &]; Array[a, 17] (* Amiram Eldar, Oct 04 2023 *)
  • PARI
    {a(n) = sumdiv(n, d, d^(d+1+n/d))}