A319728 Number of strict T_0 integer partitions of n.
1, 1, 1, 2, 2, 3, 3, 4, 6, 8, 9, 10, 14, 16, 19, 25, 31, 34, 41, 49, 59, 72, 81, 94, 113, 133, 152, 179, 209, 239, 273, 315, 366, 422, 478, 548, 627, 711, 812, 926, 1051, 1185, 1340, 1514, 1718, 1945, 2179, 2444, 2757, 3095, 3465, 3892, 4362, 4865, 5427, 6068
Offset: 0
Keywords
Examples
The a(11) = 10 integer partitions are (11), (7,4), (8,3), (9,2), (5,4,2), (6,3,2), (6,4,1), (7,3,1), (8,2,1), (5,3,2,1). Missing from this list are (6,5) and (10,1).
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]] dual[eds_]:=Table[First/@Position[eds,x],{x,Union@@eds}] Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&UnsameQ@@dual[primeMS/@#]&]],{n,60}]
Comments