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.

A241696 Number of Carlitz compositions of n with exactly six descents.

Original entry on oeis.org

13, 81, 336, 1151, 3437, 9286, 23271, 54846, 122857, 263680, 545412, 1092394, 2126688, 4036767, 7490050, 13614573, 24287970, 42592752, 73525406, 125089010, 209962350, 348026885, 570159824, 923885796, 1481735623, 2353522164, 3704254256, 5780115565, 8945915366
Offset: 18

Views

Author

Alois P. Heinz, Apr 27 2014

Keywords

Comments

No two adjacent parts of a Carlitz composition are equal.

Crossrefs

Column k=6 of A241701.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, 1,
           convert(series(add(`if`(i=j, 0, b(n-j, j)*
          `if`(j coeff(b(n, 0), x, 6):
    seq(a(n), n=18..50);