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 A343545 #14 Apr 25 2021 02:22:40 %S A343545 1,7,18,49,75,177,217,428,549,890,1012,1824,1833,2849,3360,4732,4862, %T A343545 7506,7334,10810,11382,14729,14973,22188,20850,27482,29052,37408, %U A343545 35989,50490,46407,61824,62106,75854,75390,101673,91427,116033,117624,146680,135792,179886,163228,208208 %N A343545 a(n) = n * Sum_{d|n} binomial(d+3,4)/d. %F A343545 G.f.: Sum_{k>=1} k * x^k/(1 - x^k)^5 = Sum_{k>=1} binomial(k+3,4) * x^k/(1 - x^k)^2. %t A343545 a[n_] := n * DivisorSum[n, Binomial[# + 3, 4]/# &]; Array[a, 50] (* _Amiram Eldar_, Apr 25 2021 *) %o A343545 (PARI) a(n) = n*sumdiv(n, d, binomial(d+3, 4)/d); %o A343545 (PARI) my(N=66, x='x+O('x^N)); Vec(sum(k=1, N, binomial(k+3, 4)*x^k/(1-x^k)^2)) %Y A343545 Cf. A000203, A038040, A073570, A309731, A343544, A343546, A343547. %K A343545 nonn %O A343545 1,2 %A A343545 _Seiichi Manyama_, Apr 19 2021