login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A264458
Number of permutations of [n] with exactly nine (possibly overlapping) occurrences of the generalized pattern 12-3.
2
1, 39, 859, 14531, 211877, 2822490, 35642278, 437300537, 5296987965, 63998700926, 776411239316, 9499309138937, 117556007163447, 1474385436584002, 18766076242349261, 242618101536221884, 3187985361564230544, 42590476320847716703, 578630818810648513246
OFFSET
6,2
LINKS
EXAMPLE
a(6) = 1: 123465.
a(7) = 39: 1237465, 1237546, 1237564, ..., 5123476, 6123475, 7123465.
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^(o-j), x, 10), polynom), j=1..o))
end:
a:= n-> coeff(b(n, 0), x, 9):
seq(a(n), n=6..25);
CROSSREFS
Column k=9 of A260665.
Sequence in context: A247222 A268983 A293918 * A004330 A069418 A194477
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Nov 14 2015
STATUS
approved