A308772 Sum of the third largest parts of the partitions of n into 4 prime parts.
0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 5, 5, 5, 7, 6, 8, 10, 12, 13, 20, 11, 20, 20, 27, 18, 34, 21, 44, 28, 44, 31, 59, 30, 65, 46, 79, 41, 96, 49, 115, 58, 117, 64, 157, 64, 170, 73, 179, 80, 214, 80, 243, 98, 245, 114, 307, 106, 332, 124, 352, 124, 399, 124
Offset: 0
Keywords
Programs
-
Mathematica
Table[Sum[Sum[Sum[j (PrimePi[k] - PrimePi[k - 1])*(PrimePi[j] - PrimePi[j - 1]) (PrimePi[i] - PrimePi[i - 1]) (PrimePi[n - i - j - k] - PrimePi[n - i - j - k - 1]), {i, j, Floor[(n - j - k)/2]}], {j, k, Floor[(n - k)/3]}], {k, Floor[n/4]}], {n, 0, 100}]