login
A264497
Number of permutations of [n] with exactly ten (possibly overlapping) occurrences of the generalized pattern 13-2.
2
74, 5343, 166144, 3342042, 51052432, 643569953, 7034981562, 68865924682, 617271459112, 5148104341380, 40431758240544, 301784671671496, 2156289904582398, 14834095711273034, 98718321568669660, 637965526671540768, 4016617646502383422, 24704067590177063445
OFFSET
8,1
LINKS
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, 11), polynom), j=1..o))
end:
a:= n-> coeff(b(n, 0), x, 10):
seq(a(n), n=8..25);
CROSSREFS
Column k=10 of A263776.
Sequence in context: A017737 A358796 A034203 * A262764 A107678 A093274
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Nov 14 2015
STATUS
approved