login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A228708 Triangle T(n,k) read by rows: T(n,k) = number of permutations on 123...n with exactly one abc pattern and no aj pattern with j<=k, for n>=0, 0<=k<=n. 3
0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 6, 6, 2, 0, 0, 27, 27, 12, 3, 0, 0, 110, 110, 55, 19, 4, 0, 0, 429, 429, 229, 91, 27, 5, 0, 0, 1638, 1638, 912, 393, 136, 36, 6, 0, 0, 6188, 6188, 3549, 1614, 612, 191, 46, 7, 0, 0, 23256, 23256, 13636, 6447, 2601, 897, 257, 57, 8, 0, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,11
COMMENTS
See Noonan-Zeilberger for precise definition.
LINKS
J. Noonan and D. Zeilberger, [math/9808080] The Enumeration of Permutations With a Prescribed Number of ``Forbidden'' Patterns. Also Adv. in Appl. Math. 17 (1996), no. 4, 381--407. MR1422065 (97j:05003).
FORMULA
T(n, k) = C(2n-k-1, n) - C(2n-k-1, n+3) + C(2n-2k-2, n-k-4) - C(2n-2k-2, n-k-1) + C(2n-2k-3, n-k-4) - C(2n-2k-3, n-k-2).
T(n, n-2) = n-2, T(n, k) = T(n, k+1) + T(n-1, k-1) + T(n-k, 2).
EXAMPLE
Triangle begins:
0
0,0
0,0,0
1,1,0,0
6,6,2,0,0
27,27,12,3,0,0
110,110,55,19,4,0,0
429,429,229,91,27,5,0,0
1638,1638,912,393,136,36,6,0,0
6188,6188,3549,1614,612,191,46,7,0,0
23256,23256,13636,6447,2601,897,257,57,8,0,0
...
PROG
(PARI) for(n=1, 15, for(k=1, n-2, print1(binomial(2*n-k-1, n)-binomial(2*n-k-1, n+3)+binomial(2*n-2*k-2, n-k-4)-binomial(2*n-2*k-2, n-k-1)+binomial(2*n-2*k-3, n-k-4)-binomial(2*n-2*k-3, n-k-2)", ")))
CROSSREFS
See A084249 for a curtailed version. See also A229158, A229160.
T(n, 1) = A003517(n+1). Cf. A001089.
Sequence in context: A348622 A098369 A078740 * A191504 A021155 A254245
KEYWORD
nonn,tabl,easy
AUTHOR
N. J. A. Sloane, Sep 15 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:51 EDT 2024. Contains 371797 sequences. (Running on oeis4.)