login
A309478
Sum of the squarefree parts of the partitions of n into 3 parts.
8
0, 0, 0, 3, 4, 10, 14, 24, 32, 51, 56, 77, 95, 128, 146, 198, 225, 280, 318, 384, 416, 524, 549, 672, 726, 861, 915, 1063, 1143, 1292, 1382, 1551, 1661, 1867, 1966, 2211, 2355, 2618, 2762, 3094, 3263, 3602, 3798, 4185, 4409, 4869, 5078, 5524, 5794, 6264
OFFSET
0,4
FORMULA
a(n) = Sum_{j=1..floor(n/3)} Sum_{i=j..floor((n-j)/2)} (i * mu(i)^2 + j * mu(j)^2 + (n-i-j) * mu(n-i-j)^2), where mu is the Möbius function (A008683).
EXAMPLE
Figure 1: The partitions of n into 3 parts for n = 3, 4, ...
1+1+8
1+1+7 1+2+7
1+2+6 1+3+6
1+1+6 1+3+5 1+4+5
1+1+5 1+2+5 1+4+4 2+2+6
1+1+4 1+2+4 1+3+4 2+2+5 2+3+5
1+1+3 1+2+3 1+3+3 2+2+4 2+3+4 2+4+4
1+1+1 1+1+2 1+2+2 2+2+2 2+2+3 2+3+3 3+3+3 3+3+4 ...
-----------------------------------------------------------------------
n | 3 4 5 6 7 8 9 10 ...
-----------------------------------------------------------------------
a(n) | 3 4 10 14 24 32 51 56 ...
-----------------------------------------------------------------------
MATHEMATICA
Table[Sum[Sum[i*MoebiusMu[i]^2 + j*MoebiusMu[j]^2 + (n - i - j) MoebiusMu[n - i - j]^2, {i, j, Floor[(n - j)/2]}], {j, Floor[n/3]}], {n, 0, 50}]
Table[Total[Select[Flatten[IntegerPartitions[n, {3}]], SquareFreeQ]], {n, 0, 50}] (* Harvey P. Dale, Apr 09 2022 *)
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Aug 04 2019
STATUS
approved