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.

A287776 Number of Dyck paths of semilength n such that every peak at level y > 1 is preceded by (at least) one peak at level y-1 and is followed by (at least) one peak at level y-1.

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 8, 17, 39, 95, 241, 629, 1679, 4572, 12684, 35812, 102774, 299371, 883848, 2641121, 7978262, 24337821, 74908008, 232451921, 726831776, 2288799963, 7255401745, 23143158678, 74256591422, 239582207959, 777047305709, 2532730030266, 8293970682858
Offset: 0

Views

Author

Alois P. Heinz, May 31 2017

Keywords

Examples

			 a(4) = 2:                 /\
            /\/\/\/\    /\/  \/\  .
 a(5) = 4:                   /\        /\          /\/\
            /\/\/\/\/\  /\/\/  \/\  /\/  \/\/\  /\/    \/\  .
		

Crossrefs

Programs

  • Maple
    b:= proc(x, y, k, h, t) option remember; `if`(x=0, `if`(h<2, 1, 0),
          `if`(y<=k and y0,
           b(x-1, y-1, max(y, k), `if`(t=1 and h<=y+1, y, h), 0), 0))
        end:
    a:= n-> b(2*n, 0$4):
    seq(a(n), n=0..35);
  • Mathematica
    b[x_, y_, k_, h_, t_] := b[x, y, k, h, t] = If[x == 0, If[h < 2, 1, 0], If[y <= k && y < x - 1, b[x - 1, y + 1, k, h, 1], 0] + If[y > 0, b[x - 1, y - 1, Max[y, k], If[t == 1 && h <= y + 1, y, h], 0], 0]];
    a[n_] := b[2n, 0, 0, 0, 0];
    Table[a[n], {n, 0, 35}] (* Jean-François Alcover, Jun 01 2018, from Maple *)