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.

A058267 An approximation to sigma_{1/2}(n): round( Sum_{ d divides n } sqrt(d) ).

Original entry on oeis.org

1, 2, 3, 4, 3, 7, 4, 7, 6, 8, 4, 12, 5, 9, 9, 11, 5, 14, 5, 14, 10, 10, 6, 20, 8, 11, 11, 16, 6, 21, 7, 17, 12, 12, 12, 25, 7, 13, 13, 23, 7, 24, 8, 19, 19, 14, 8, 31, 11, 20, 14, 20, 8, 26, 14, 26, 15, 15, 9, 39, 9, 16, 21, 25, 15, 28, 9, 23, 16, 28, 9, 42, 10
Offset: 1

Views

Author

N. J. A. Sloane, Dec 08 2000

Keywords

Crossrefs

Programs

  • Maple
    map(round @ numtheory:-sigma[1/2], [$1..100]); # Robert Israel, Aug 18 2017
  • Mathematica
    f[n_] := Round@ DivisorSigma[1/2, n]; Array[f, 70] (* Robert G. Wilson v, Aug 17 2017 *)
  • PARI
    a(n) = round(sumdiv(n, d, sqrt(d))); \\ Michel Marcus, Aug 17 2017

Formula

Sum_{k=1..n} a(k) ~ (2/3)*zeta(3/2) * n^(3/2). - Amiram Eldar, Jan 14 2023