A353858 Number of integer compositions of n with run-sum trajectory ending in a singleton.
0, 1, 2, 2, 5, 2, 8, 2, 20, 5, 8, 2, 78, 2, 8, 8, 223, 2, 179, 2, 142, 8, 8, 2, 4808
Offset: 0
Examples
The a(0) = 0 through a(8) = 20 compositions: . (1) (2) (3) (4) (5) (6) (7) (8) (11) (111) (22) (11111) (33) (1111111) (44) (112) (222) (224) (211) (1113) (422) (1111) (2112) (1124) (3111) (2114) (11211) (2222) (111111) (4112) (4211) (11114) (21122) (22112) (41111) (111122) (112112) (211211) (221111) (1111211) (1121111) (11111111)
Crossrefs
The lengths of trajectories of standard compositions are A353854.
These compositions are ranked by A353857.
A011782 counts compositions.
A066099 lists compositions in standard order.
A353859 counts compositions by length of run-sum trajectory.
A353860 counts collapsible compositions.
A353932 lists run-sums of standard compositions.
Programs
-
Mathematica
Table[Length[Select[Join@@Permutations/@ IntegerPartitions[n], Length[FixedPoint[Total/@Split[#]&,#]]==1&]],{n,0,15}]
Comments