A379308 Number of integer partitions of n with a unique squarefree part.
0, 1, 1, 1, 0, 2, 2, 2, 0, 3, 5, 5, 1, 6, 9, 9, 2, 10, 14, 18, 6, 18, 24, 30, 11, 28, 39, 47, 24, 48, 63, 76, 41, 74, 95, 118, 65, 120, 149, 181, 107, 181, 221, 266, 169, 266, 335, 398, 262, 394, 487, 578, 391, 578, 697, 844, 592, 834, 997, 1198, 867
Offset: 0
Keywords
Examples
The a(1) = 1 through a(11) = 5 partitions: (1) (2) (3) . (5) (6) (7) . (5,4) (10) (11) (4,1) (4,2) (4,3) (8,1) (6,4) (7,4) (4,4,1) (8,2) (8,3) (9,1) (9,2) (4,4,2) (4,4,3)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Count[#,_?SquareFreeQ]==1&]],{n,0,30}]