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!)
A224959 Number of compositions [p(1), p(2), ..., p(k)] of n such that p(j) - p(j-1) <= 2 4

%I #21 Dec 19 2020 02:28:19

%S 1,1,2,4,8,15,29,55,105,199,378,716,1358,2572,4873,9229,17480,33102,

%T 62688,118709,224795,425676,806068,1526371,2890338,5473125,10363871,

%U 19624925,37161558,70368705,133249369,252319408,477788980,904735349,1713195705,3244086145

%N Number of compositions [p(1), p(2), ..., p(k)] of n such that p(j) - p(j-1) <= 2

%H Alois P. Heinz, <a href="/A224959/b224959.txt">Table of n, a(n) for n = 0..3607</a>

%F a(n) ~ c * d^n, where d=1.893587506319686491635881459546948770530553555112342985931092896452453511... and c=0.6398882559654423774981963082429746674258714212085034829366885993226... - _Vaclav Kotesovec_, May 01 2014

%e There are a(5) = 15 such compositions of 5:

%e 01: [ 1 1 1 1 1 ]

%e 02: [ 1 1 1 2 ]

%e 03: [ 1 1 2 1 ]

%e 04: [ 1 1 3 ]

%e 05: [ 1 2 1 1 ]

%e 06: [ 1 2 2 ]

%e 07: [ 1 3 1 ]

%e 08: [ 2 1 1 1 ]

%e 09: [ 2 1 2 ]

%e 10: [ 2 2 1 ]

%e 11: [ 2 3 ]

%e 12: [ 3 1 1 ]

%e 13: [ 3 2 ]

%e 14: [ 4 1 ]

%e 15: [ 5 ]

%e (the single forbidden composition is [ 1 4 ]).

%p b:= proc(n, i) option remember;

%p `if`(n=0, 1, add(b(n-j, max(1, j-2)), j=i..n))

%p end:

%p a:= n-> b(n, 1):

%p seq(a(n), n=0..40); # _Alois P. Heinz_, May 02 2013

%t b[n_, i_] := b[n, i] = If[n==0, 1, Sum[b[n-j, Max[1, j-2]], {j, i, n}]];

%t a[n_] := b[n, 1];

%t a /@ Range[0, 40] (* _Jean-François Alcover_, Dec 19 2020, after _Alois P. Heinz_ *)

%Y Cf. A003116 (compositions such that p(j) - p(j-1) <= 1).

%Y Cf. A225084 (triangle: compositions of n such that max(p(j) - p(j-1)) = k).

%Y Cf. A225085 (triangle: compositions of n such that max(p(j) - p(j-1)) <= k).

%K nonn

%O 0,3

%A _Joerg Arndt_, Apr 21 2013

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 23 13:04 EDT 2024. Contains 371913 sequences. (Running on oeis4.)