OFFSET
1,3
COMMENTS
Apart from the offset the same as A086732.
Sum of all parts of all partitions of n minus the total number of parts in the partitions of n into equal parts. - Omar E. Pol, Jan 24 2014
EXAMPLE
a(1) = 1 - 1 = 0;
a(2) = 4 - 3 = 1;
a(3) = 9 - 4 = 5;
a(6) = 66 - 12 = 54.
MAPLE
MATHEMATICA
Table[Total[Flatten[IntegerPartitions[n]]]-DivisorSigma[1, n], {n, 40}] (* Harvey P. Dale, Mar 21 2013 *)
PROG
(PARI) a(n) = n*numbpart(n) - sigma(n); \\ Michel Marcus, Mar 10 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jul 01 2009
EXTENSIONS
a(6), a(8), a(24) corrected by R. J. Mathar, Aug 14 2009
STATUS
approved