A241627 Number of compositions of n with exactly two descents.
2, 8, 29, 81, 205, 469, 1013, 2059, 4021, 7558, 13780, 24440, 42358, 71867, 119715, 196084, 316362, 503410, 791043, 1228636, 1888003, 2872541, 4330299, 6471778, 9594556, 14116745, 20622825, 29925512, 43149302, 61843197, 88130983, 124912824, 176132457
Offset: 6
Keywords
Examples
a(6) = 2: [3,2,1], [2,1,2,1]. a(7) = 8: [4,2,1], [3,2,1,1], [3,1,2,1], [1,3,2,1], [2,1,3,1], [1,2,1,2,1], [2,1,1,2,1], [2,1,2,1,1].
Links
- Joerg Arndt and Alois P. Heinz, Table of n, a(n) for n = 6..1000
Programs
-
Maple
b:= proc(n, i) option remember; `if`(n=0, 1, convert(series(add(b(n-j, j)* `if`(j coeff(b(n, 0), x, 2): seq(a(n), n=6..50);
-
Mathematica
k = 2; b[n_, i_] := b[n, i] = If[n == 0, 1, Sum[b[n - j, j]* If[j < i, x, 1], {j, n}] + O[x]^(k+1)]; a[n_] := SeriesCoefficient[b[n, 0], {x, 0, k}]; a /@ Range[6, 50] (* Jean-François Alcover, Aug 27 2021, after Maple code *)