A354909 Number of integer compositions of n that are not the run-sums of any other composition.
0, 0, 1, 1, 3, 7, 16, 33, 74, 155, 329, 688, 1439, 2975, 6154, 12654, 25964, 53091, 108369, 220643, 448520
Offset: 0
Examples
The a(0) = 0 through a(6) = 16 compositions: . . (11) (111) (112) (113) (114) (211) (311) (411) (1111) (1112) (1113) (1121) (1122) (1211) (1131) (2111) (1221) (11111) (1311) (2112) (2211) (3111) (11112) (11121) (11211) (12111) (21111) (111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Complement[Join@@Permutations/@IntegerPartitions[n], Total/@Split[#]&/@Join@@Permutations/@IntegerPartitions[n]]],{n,0,15}]
Comments