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!)
A288682 Number of Dyck paths of semilength n such that no positive level has fewer than six peaks. 2

%I #13 Apr 24 2021 08:44:52

%S 1,0,0,0,0,0,1,1,1,1,1,1,1,8,156,1213,5232,16091,41834,100320,229851,

%T 513699,1166304,3068322,11294356,54431307,271824026,1253186445,

%U 5233138157,20031588131,71538367677,242280234545,789260222205,2507719402158,7900354628357

%N Number of Dyck paths of semilength n such that no positive level has fewer than six peaks.

%H Alois P. Heinz, <a href="/A288682/b288682.txt">Table of n, a(n) for n = 0..300</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Lattice_path#Counting_lattice_paths">Counting lattice paths</a>

%t b[n_, k_, j_]:=b[n, k, j]=If[j==n, 1, Sum[Sum[Binomial[i, m] Binomial[j - 1, i - 1 - m], {m, Max[k, i - j], i - 1}] b[n - j, k, i], {i, n - j}]]; a[n_]:=If[n==0, 1, Sum[b[n, 6, j], {j, 6, n}]]; Table[a[n], {n, 0, 35}] (* _Indranil Ghosh_, Aug 10 2017 *)

%o (Python)

%o from sympy.core.cache import cacheit

%o from sympy import binomial

%o @cacheit

%o def b(n, k, j): return 1 if j==n else sum([sum([binomial(i, m)*binomial(j - 1, i - 1 - m) for m in range(max(k, i - j), i)])*b(n - j, k, i) for i in range(1, n - j + 1)])

%o def a(n): return 1 if n==0 else sum([b(n, 6, j) for j in range(6, n + 1)])

%o print([a(n) for n in range(36)]) # _Indranil Ghosh_, Aug 10 2017

%Y Column k=6 of A288386.

%Y Cf. A000108.

%K nonn

%O 0,14

%A _Alois P. Heinz_, Jun 13 2017

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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)