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.

A308593 a(n) = Sum_{d|n} d^(n^2/d).

Original entry on oeis.org

1, 5, 28, 513, 3126, 840242, 823544, 8606711809, 7625984905477, 1221277338483250, 285311670612, 89215914432866222355906, 302875106592254, 316913110043605007120962336162, 608295209422788113565012727970423808, 680564733921105089459460296530789924865
Offset: 1

Views

Author

Seiichi Manyama, Jun 09 2019

Keywords

Crossrefs

Diagonal of A308509.

Programs

  • Mathematica
    Table[Sum[d^(n^2/d), {d, Divisors[n]}], {n,1,20}] (* Vaclav Kotesovec, Jun 09 2019 *)
  • PARI
    {a(n) = sumdiv(n, d, d^(n^2/d))}