A308783 Sum of all the parts in the partitions of n into 4 squarefree parts.
0, 0, 0, 0, 4, 5, 12, 14, 32, 36, 60, 66, 96, 104, 154, 165, 240, 255, 342, 380, 500, 504, 660, 690, 888, 900, 1144, 1161, 1484, 1508, 1800, 1860, 2272, 2277, 2720, 2800, 3348, 3404, 4028, 4056, 4880, 4879, 5670, 5762, 6820, 6840, 7912, 8084, 9312, 9408
Offset: 0
Keywords
Programs
-
Mathematica
Table[n*Sum[Sum[Sum[MoebiusMu[k]^2*MoebiusMu[j]^2*MoebiusMu[i]^2* MoebiusMu[n - i - j - k]^2, {i, j, Floor[(n - j - k)/2]}], {j, k, Floor[(n - k)/3]}], {k, Floor[n/4]}], {n, 0, 50}] Table[Total[Flatten[Select[IntegerPartitions[n,{4}],AllTrue[#,SquareFreeQ]&]]],{n,0,50}] (* Harvey P. Dale, Aug 14 2022 *)