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.

A264496 Number of permutations of [n] with exactly nine (possibly overlapping) occurrences of the generalized pattern 13-2.

Original entry on oeis.org

1, 256, 11115, 258564, 4235959, 55145400, 609428105, 5954337792, 52838734860, 433992926048, 3345094317796, 24447556164496, 170782982829160, 1147577406468288, 7455096381483206, 47017233051466444, 288854847620573814, 1733658007070671968, 10189610103251200265
Offset: 7

Views

Author

Alois P. Heinz, Nov 14 2015

Keywords

Crossrefs

Column k=9 of A263776.

Programs

  • Maple
    b:= proc(u, o) option remember; `if`(u+o=0, 1, add(
           b(u-j, o+j-1), j=1..u) +add(convert(series(
           b(u+j-1, o-j)*x^(j-1), x, 10),polynom), j=1..o))
        end:
    a:= n-> coeff(b(n, 0), x, 9):
    seq(a(n), n=7..25);