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!)
A244716 Number of compositions of n with exactly 4 transitions between different parts. 2

%I #9 Aug 29 2021 04:32:46

%S 1,6,31,99,278,654,1390,2714,4927,8531,13963,22134,33767,50283,72470,

%T 102891,142375,194202,260093,343973,447906,577636,735540,928009,

%U 1159312,1436145,1765079,2152787,2608321,3137866,3755214,4464420,5284570,6216275,7287298,8494233

%N Number of compositions of n with exactly 4 transitions between different parts.

%H Alois P. Heinz, <a href="/A244716/b244716.txt">Table of n, a(n) for n = 7..900</a>

%p b:= proc(n, v) option remember; `if`(n=0, [1, 0$4],

%p add(`if`(v in [0, i], b(n-i, `if`(i<=n-i, i, -1)),

%p [0, b(n-i, `if`(i<=n-i, i, -1))[1..4][]]), i=1..n))

%p end:

%p a:= n-> b(n, 0)[5]:

%p seq(a(n), n=7..60);

%t b[n_, v_] := b[n, v] = If[n == 0, 1, Expand[Sum[b[n - i, i]*

%t If[v == 0 || v == i, 1, x], {i, n}]]];

%t a[n_] := Coefficient[b[n, 0], x, 4];

%t Table[a[n], {n, 7, 60}] (* _Jean-François Alcover_, Aug 29 2021, after A238279 Maple code *)

%Y Column k=4 of A238279.

%K nonn

%O 7,2

%A _Joerg Arndt_ and _Alois P. Heinz_, Jul 04 2014

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 July 16 08:10 EDT 2024. Contains 374345 sequences. (Running on oeis4.)