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.

A243232 Number of isoscent sequences of length n with exactly six ascents.

Original entry on oeis.org

7, 1422, 61966, 1419901, 22720053, 288205741, 3105573804, 29654436325, 258037473373, 2086374808221, 15899245803550, 115413232143719, 804608004076949, 5421939004211551, 35497436998569721, 226735499246904329, 1417770877081098164, 8703370306993200829
Offset: 10

Views

Author

Joerg Arndt and Alois P. Heinz, Jun 01 2014

Keywords

Crossrefs

Column k=6 of A242351.

Programs

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