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.

A264912 Number of 7-ascent sequences of length n with no consecutive repeated letters.

Original entry on oeis.org

1, 1, 7, 56, 476, 4312, 41468, 422128, 4536140, 51328018, 610168496, 7604171722, 99154078394, 1350325442746, 19173655721912, 283420080801700, 4354942891383206, 69465537443190352, 1148784383085885884, 19673049517219904032, 348483690687062619926
Offset: 0

Views

Author

Alois P. Heinz, Nov 28 2015

Keywords

Crossrefs

Column k=7 of A264909.

Programs

  • Maple
    b:= proc(n, i, t) option remember; `if`(n<1, 1, add(
          `if`(j=i, 0, b(n-1, j, t+`if`(j>i, 1, 0))), j=0..t+7))
        end:
    a:= n-> (b(n-1, 0$2)):
    seq(a(n), n=0..30);