login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A241631 Number of compositions of n with exactly six descents. 3
13, 139, 927, 4719, 20122, 75317, 254805, 794475, 2315005, 6369689, 16681342, 41842970, 101039601, 235855414, 534058830, 1176497139, 2527742988, 5308195367, 10915439320, 22015220687, 43612884462, 84970442998, 162994589899, 308155639555, 574716486444 (list; graph; refs; listen; history; text; internal format)
OFFSET
18,1
LINKS
Joerg Arndt and Alois P. Heinz, Table of n, a(n) for n = 18..1000
EXAMPLE
a(18) = 13: [3,2,1,3,2,1,3,2,1], [2,1,3,2,1,3,2,1,2,1], [2,1,2,1,3,2,1,3,2,1], [3,2,1,3,2,1,2,1,2,1], [2,1,3,2,1,2,1,3,2,1], [3,2,1,2,1,2,1,3,2,1], [3,2,1,2,1,3,2,1,2,1], [2,1,2,1,2,1,3,2,1,2,1], [2,1,2,1,3,2,1,2,1,2,1], [2,1,3,2,1,2,1,2,1,2,1], [2,1,2,1,2,1,2,1,3,2,1], [3,2,1,2,1,2,1,2,1,2,1], [2,1,2,1,2,1,2,1,2,1,2,1].
MAPLE
b:= proc(n, i) option remember;
`if`(n=0, 1, convert(series(add(b(n-j, j)*
`if`(j<i, x, 1), j=1..n), x, 7), polynom))
end:
a:= n-> coeff(b(n, 0), x, 6):
seq(a(n), n=18..50);
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0, 1, Sum[b[n-j, j]*
If[j < i, x, 1], {j, 1, n}] // Expand];
a[n_] := Coefficient[b[n, 0], x, 6];
Table[a[n], {n, 18, 50}] (* Jean-François Alcover, Nov 28 2023, from Maple code *)
CROSSREFS
Column k=6 of A238343 and of A238344.
Sequence in context: A280745 A142896 A193700 * A125425 A016145 A351812
KEYWORD
nonn
AUTHOR
Joerg Arndt and Alois P. Heinz, Apr 26 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)