A374703 Number of integer compositions of 2n whose leaders of weakly decreasing runs sum to n. Center n = 2*k of the triangle A374748.
1, 1, 2, 9, 24, 96, 343, 1242, 4700, 17352, 65995
Offset: 0
Examples
The a(0) = 1 through a(4) = 24 compositions: () (11) (22) (33) (44) (211) (321) (422) (1122) (431) (1221) (1133) (3111) (1322) (11112) (1331) (11121) (4211) (11211) (11132) (12111) (11321) (13211) (21122) (21221) (22112) (22121) (41111) (111113) (111131) (111311) (113111) (131111) (211112) (211121) (211211) (212111)
Links
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Join@@Permutations /@ IntegerPartitions[2n],Total[First/@Split[#,GreaterEqual]]==n&]],{n,0,8}]
Comments