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”).
%I #8 Dec 16 2019 22:10:34
%S 1,13,40,136,211,535,682,1322,1808,2708,3071,5663,6170,7934,9959,
%T 13799,14666,20498,21581,28781,32750,37106,38693,55973,59723,65807,
%U 73097,87209,89732,114032,116915,138419,148220,158624,169649,216305,220412,233408,247097
%N a(n) = Sum_{k=1..n} k^2*tau_3(k), where tau_3 is A007425.
%H G. C. Greubel, <a href="/A319088/b319088.txt">Table of n, a(n) for n = 1..10000</a>
%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/StieltjesConstants.html">Stieltjes Constants</a>
%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Stieltjes_constants">Stieltjes constants</a>
%F a(n) ~ n^3 * (log(n)^2/6 + (gamma - 1/9)*log(n) + gamma^2 - gamma/3 - g1 + 1/27), where gamma is the Euler-Mascheroni constant A001620 and g1 is the first Stieltjes constant A082633.
%t nmax = 50; Accumulate[Table[k^2*Sum[DivisorSigma[0, d], {d, Divisors[k]}], {k, 1, nmax}]]
%Y Cf. A007425, A061201, A318750.
%K nonn
%O 1,2
%A _Vaclav Kotesovec_, Sep 10 2018