A264466 Number of permutations of [n] with exactly seven (possibly overlapping) occurrences of the generalized pattern 23-1.
1, 111, 2141, 29066, 336137, 3663730, 39037155, 414003430, 4414401391, 47606401475, 521147444815, 5804080039932, 65854473968668, 761861585833395, 8990938684395442, 108258685340444377, 1330041483208589743, 16671576238569453924, 213169773223813966680
Offset: 6
Keywords
Examples
a(6) = 1: 456231. a(7) = 111: 1567342, 2456713, 2456731, ..., 6753412, 6753421, 7456231.
Links
- Alois P. Heinz, Table of n, a(n) for n = 6..500
Crossrefs
Column k=7 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, 8), polynom), j=1..o)) end: a:= n-> coeff(b(n, 0), x, 7): seq(a(n), n=6..25);