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.
%I A372834 #8 May 18 2024 02:23:16 %S A372834 0,1,1,1,1,3,1,3,1,3,1,11,1,3,4,3,1,11,1,7,4,3,1,25,1,3,4,7,1,61,1,7, %T A372834 4,3,6,25,1,3,4,39,1,2,1,7,23,3,1,9,1,17,4,7,1,2,6,53,4,3,1,49,1,3,31, %U A372834 7,6,2,1,7,4,129,1,19,1,3,23,7,8,2,1,83 %N A372834 a(n) is the numerator of Sum_{d|n, d < sqrt(n)} 1/d. %F A372834 Numerators of coefficients in expansion of Sum_{k>=1} x^(k*(k+1)) / (k * (1 - x^k)). %e A372834 0, 1, 1, 1, 1, 3/2, 1, 3/2, 1, 3/2, 1, 11/6, 1, 3/2, 4/3, 3/2, 1, 11/6, ... %t A372834 nmax = 80; CoefficientList[Series[Sum[x^(k (k + 1))/(k (1 - x^k)), {k, 1, nmax}], {x, 0, nmax}], x] // Numerator // Rest %o A372834 (PARI) a(n) = numerator(sumdiv(n, d, if (d^2 < n, 1/d))); \\ _Michel Marcus_, May 14 2024 %Y A372834 Cf. A017665, A070039, A372835 (denominators). %K A372834 nonn,frac %O A372834 1,6 %A A372834 _Ilya Gutkovskiy_, May 14 2024