A308843 Sum of the third largest parts in the partitions of n into 5 squarefree parts.
0, 0, 0, 0, 0, 1, 1, 2, 3, 6, 8, 12, 13, 21, 23, 32, 33, 49, 56, 77, 86, 117, 130, 162, 174, 223, 239, 295, 312, 391, 418, 497, 520, 631, 675, 801, 844, 1009, 1072, 1247, 1306, 1537, 1628, 1890, 1972, 2312, 2425, 2786, 2889, 3325, 3472, 3955, 4089, 4671, 4851, 5474
Offset: 0
Keywords
Links
Programs
-
Mathematica
Table[Sum[Sum[Sum[Sum[j * MoebiusMu[l]^2*MoebiusMu[k]^2*MoebiusMu[j]^2 *MoebiusMu[i]^2*MoebiusMu[n - i - j - k - l]^2, {i, j, Floor[(n - j - k - l)/2]}], {j, k, Floor[(n - k - l)/3]}], {k, l, Floor[(n - l)/4]}], {l, Floor[n/5]}], {n, 0, 50}] Table[Total[Select[IntegerPartitions[n,{5}],AllTrue[#,SquareFreeQ]&][[All,3]]],{n,0,60}] (* Harvey P. Dale, Dec 26 2022 *)
Formula
Extensions
a(54)..a(55) from David A. Corneth, Sep 16 2019
Comments