OFFSET
1,3
COMMENTS
This is Andrews's D_{0,1}(n).
From Omar E. Pol, Dec 08 2021: (Start)
a(n) is also the volume of a symmetric polycube which belongs to the family of symmetric polycubes that represent the convolution of A000203 with any other integer sequence, n >= 1. (End)
LINKS
George E. Andrews, Stacked lattice boxes, Ann. Comb. 3 (1999), 115-130.
FORMULA
G.f.: (Sum_{k>=1} x^k/(1 - x^k))*(Sum_{k>=1} k*x^k/(1 - x^k)). - Ilya Gutkovskiy, Jan 01 2017
MAPLE
with(numtheory); D01:=n->add(tau(j)*sigma(n-j), j=1..n-1);
[seq(D01(n), n=1..60)];
MATHEMATICA
Table[Sum[DivisorSigma[0, j] DivisorSigma[1, n - j], {j, n - 1}], {n, 60}] (* Michael De Vlieger, Jan 01 2017 *)
PROG
(PARI) a(n)=sum(i=1, n-1, numdiv(i)*sigma(n-i)) \\ Charles R Greathouse IV, Feb 19 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 17 2011
STATUS
approved