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.

A373115 Number weak ascent sequences of length 2n (prefixed with a zero) with exactly n weak ascents.

Original entry on oeis.org

1, 0, 0, 1, 35, 1661, 107002, 9047970, 972937247, 129603346139, 20934881571217, 4029204458109445, 910549073414709876, 238643240329544375336, 71772700696174395158056, 24544642886642172762170933, 9468192975202745545226891834, 4090995487728206638560153282674
Offset: 0

Views

Author

Alois P. Heinz, May 25 2024

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i, t) option remember; expand(`if`(n=0, 1, add(
          b(n-1, j, t+`if`(j>=i, 1, 0))*`if`(j>=i, x, 1), j=0..t+1)))
        end:
    a:= n-> coeff(b(2*n, -1$2), x, n):
    seq(a(n), n=0..17);

Formula

a(n) = A369321(2n,n).