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.

A264469 Number of permutations of [n] with exactly ten (possibly overlapping) occurrences of the generalized pattern 23-1.

Original entry on oeis.org

4, 432, 10723, 185030, 2679741, 35436222, 447105877, 5525656829, 67836294722, 834260210092, 10332749157300, 129333951912536, 1639800629344515, 21092071947142268, 275512690552878512, 3657197040905519063, 49353853545913899116, 677272710732166102115
Offset: 7

Views

Author

Alois P. Heinz, Nov 14 2015

Keywords

Examples

			a(7) = 4: 4567231, 5672341, 5673412, 5673421.
		

Crossrefs

Column k=10 of A260670.

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^u, x, 11), polynom), j=1..o))
        end:
    a:= n-> coeff(b(n, 0), x, 10):
    seq(a(n), n=7..25);