cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A374688 Number of integer compositions of n whose leaders of strictly increasing runs are themselves strictly increasing.

Original entry on oeis.org

1, 1, 1, 2, 2, 4, 5, 7, 11, 16, 21, 31, 45, 63, 87, 122, 170, 238, 328, 449, 616, 844, 1151, 1565, 2121, 2861, 3855, 5183, 6953, 9299, 12407, 16513, 21935, 29078, 38468, 50793, 66935, 88037, 115577, 151473, 198175, 258852, 337560, 439507, 571355, 741631
Offset: 0

Views

Author

Gus Wiseman, Jul 27 2024

Keywords

Comments

The leaders of strictly increasing runs in a sequence are obtained by splitting it into maximal strictly increasing subsequences and taking the first term of each.
Also the number of ways to choose a strict integer partition of each part of an integer composition of n (A304969) such that the minima are strictly decreasing.

Examples

			The a(0) = 1 through a(9) = 16 compositions:
  ()  (1)  (2)  (3)   (4)   (5)    (6)    (7)    (8)     (9)
                (12)  (13)  (14)   (15)   (16)   (17)    (18)
                            (23)   (24)   (25)   (26)    (27)
                            (122)  (123)  (34)   (35)    (36)
                                   (132)  (124)  (125)   (45)
                                          (133)  (134)   (126)
                                          (142)  (143)   (135)
                                                 (152)   (144)
                                                 (233)   (153)
                                                 (1223)  (162)
                                                 (1232)  (234)
                                                         (243)
                                                         (1224)
                                                         (1233)
                                                         (1242)
                                                         (1323)
		

Crossrefs

The weak version is A374635.
Ranked by positions of strictly increasing rows in A374683 (sums A374684).
The opposite version is A374763.
Types of runs (instead of strictly increasing):
- For leaders of identical runs we have A000041.
- For leaders of anti-runs we have A374679.
- For leaders of weakly increasing runs we have A374634.
- For leaders of strictly decreasing runs we have A374762.
Types of run-leaders (instead of strictly increasing):
- For identical leaders we have A374686, ranks A374685.
- For distinct leaders we have A374687, ranks A374698.
- For strictly decreasing leaders we have A374689.
- For weakly increasing leaders we have A374690.
- For weakly decreasing leaders we have A374697.
A003242 counts anti-run compositions, ranks A333489.
A011782 counts compositions.
A238130, A238279, A333755 count compositions by number of runs.
A373949 counts compositions by run-compressed sum, opposite A373951.
A374700 counts compositions by sum of leaders of strictly increasing runs.

Programs

  • Mathematica
    Table[Length[Select[Join@@Permutations /@ IntegerPartitions[n],Less@@First/@Split[#,Less]&]],{n,0,15}]

Extensions

a(26) and beyond from Christian Sievers, Aug 08 2024