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.

A072379 Sum_{k<=n} (sigma(k)^2), where sigma(k) denotes the sum of the divisors of k A000203.

Original entry on oeis.org

1, 10, 26, 75, 111, 255, 319, 544, 713, 1037, 1181, 1965, 2161, 2737, 3313, 4274, 4598, 6119, 6519, 8283, 9307, 10603, 11179, 14779, 15740, 17504, 19104, 22240, 23140, 28324, 29348, 33317, 35621, 38537, 40841, 49122, 50566, 54166, 57302
Offset: 1

Views

Author

Antonio G. Astudillo (afg_astudillo(AT)hotmail.com), Jul 20 2002

Keywords

Crossrefs

Programs

  • Maple
    A072379 := proc(n)
        add( numtheory[sigma](k)^2,k=0..n) ;
    end proc:
    seq(A072379(n),n=1..80) ; # R. J. Mathar, Jul 09 2024
  • Mathematica
    Accumulate[Table[DivisorSigma[1, k]^2, {k, 1, 50}]] (* Vaclav Kotesovec, Sep 10 2018 *)
  • PARI
    a(n) = sum(k=1, n, sigma(k)^2) \\ Michel Marcus, Jun 20 2013

Formula

Ramanujan's asymptotic formula: (5/6)*Zeta(3)*n^3+O(n^2*log(n)^2)