A308931 Sum of the third largest parts in the partitions of n into 7 parts.
0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 4, 7, 11, 19, 28, 42, 61, 88, 121, 171, 228, 307, 405, 531, 682, 880, 1111, 1403, 1750, 2174, 2670, 3281, 3983, 4827, 5807, 6965, 8291, 9861, 11641, 13718, 16080, 18804, 21881, 25423, 29392, 33921, 39001, 44753, 51163, 58411
Offset: 0
Keywords
Programs
-
Mathematica
Table[Total[IntegerPartitions[n,{7}][[All,3]]],{n,0,50}] (* Harvey P. Dale, Aug 15 2020 *)