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.

A349005 a(n) = Sum_{d|n, d^2>=n} 1+d+n/d.

Original entry on oeis.org

3, 4, 5, 11, 7, 14, 9, 17, 18, 20, 13, 31, 15, 26, 26, 38, 19, 42, 21, 45, 34, 38, 25, 64, 38, 44, 42, 59, 31, 76, 33, 66, 50, 56, 50, 102, 39, 62, 58, 94, 43, 100, 45, 87, 81, 74, 49, 129, 66, 96, 74, 101, 55, 124, 74, 124, 82, 92, 61, 174, 63, 98, 107, 139, 86, 148
Offset: 1

Views

Author

Michel Marcus, Nov 05 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, 1 + # + n/# &, #^2 >= n &]; Array[a, 100] (* Amiram Eldar, Nov 05 2021 *)
  • PARI
    a(n) = sumdiv(n, d, if (d^2>=n, d+1+n/d));

Formula

a(n) = A060866(n) + A038548(n).