A308771 Sum of the smallest parts of the partitions of n into 4 prime parts.
0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 4, 5, 4, 7, 4, 8, 6, 10, 8, 18, 6, 18, 10, 21, 10, 28, 10, 38, 14, 34, 14, 47, 12, 51, 18, 55, 16, 68, 18, 81, 20, 73, 22, 105, 20, 110, 24, 113, 26, 136, 24, 161, 30, 147, 32, 187, 28, 200, 34, 204, 32, 237, 32, 262, 38, 246
Offset: 0
Keywords
Programs
-
Mathematica
Table[Sum[Sum[Sum[k (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}]