login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349005
a(n) = Sum_{d|n, d^2>=n} 1+d+n/d.
0
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,1
LINKS
Roland Bacher, Yet another Proof of an old Hat, arXiv:2111.02788 [math.HO], 2021.
FORMULA
a(n) = A060866(n) + A038548(n).
MATHEMATICA
a[n_] := DivisorSum[n, 1 + # + n/# &, #^2 >= n &]; Array[a, 100] (* Amiram Eldar, Nov 05 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, if (d^2>=n, d+1+n/d));
CROSSREFS
Sequence in context: A329524 A319067 A224503 * A128920 A006288 A047598
KEYWORD
nonn
AUTHOR
Michel Marcus, Nov 05 2021
STATUS
approved