cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A288140 Number of Dyck paths of semilength n such that the number of peaks is weakly decreasing from lower to higher levels.

This page as a plain text file.
%I A288140 #17 May 29 2018 03:04:32
%S A288140 1,1,1,3,4,12,28,63,177,455,1233,3383,9359,26809,77078,223201,653982,
%T A288140 1934508,5783712,17431660,52879184,161386859,495432345,1530191918,
%U A288140 4754079840,14849407892,46604383972,146897291083,464892421363,1477052536749,4711124635655
%N A288140 Number of Dyck paths of semilength n such that the number of peaks is weakly decreasing from lower to higher levels.
%H A288140 Alois P. Heinz, <a href="/A288140/b288140.txt">Table of n, a(n) for n = 0..200</a>
%H A288140 Wikipedia, <a href="https://en.wikipedia.org/wiki/Lattice_path#Counting_lattice_paths">Counting lattice paths</a>
%e A288140 . a(5) = 12:
%e A288140 .                       /\         /\         /\
%e A288140 .   /\/\/\/\/\   /\/\/\/  \   /\/\/  \/\   /\/  \/\/\
%e A288140 .
%e A288140 .    /\               /\/\       /\/\       /\/\
%e A288140 .   /  \/\/\/\   /\/\/    \   /\/    \/\   /    \/\/\
%e A288140 .
%e A288140 .         /\         /\           /\         /\
%e A288140 .      /\/  \       /  \/\     /\/  \       /  \/\
%e A288140 .   /\/      \   /\/      \   /      \/\   /      \/\  .
%p A288140 b:= proc(n, k, j) option remember; `if`(n=j, 1, add(add(
%p A288140        b(n-j, t, i)*binomial(i, t)*binomial(j-1, i-1-t),
%p A288140        t=max(k, i-j)..min(n-j, i-1)), i=1..n-j))
%p A288140     end:
%p A288140 a:= n-> `if`(n=0, 1, add(b(n, k$2), k=1..n)):
%p A288140 seq(a(n), n=0..31);
%t A288140 b[n_, k_, j_] := b[n, k, j] = If[n == j, 1, Sum[Sum[b[n - j, t, i]* Binomial[i, t]*Binomial[j - 1, i - 1 - t], {t, Max[k, i - j], Min[n - j, i - 1]}], {i, 1, n - j}]];
%t A288140 a[n_] := If[n == 0, 1, Sum[b[n, k, k], {k, 1, n}]];
%t A288140 Table[a[n], {n, 0, 31}] (* _Jean-François Alcover_, May 29 2018, from Maple *)
%Y A288140 Cf. A000108, A008930, A048285, A288141, A288146, A288147.
%K A288140 nonn
%O A288140 0,4
%A A288140 _Alois P. Heinz_, Jun 05 2017