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!)
A256199 Number of permutations in S_n that avoid the pattern 53124. 1

%I #21 Sep 29 2021 02:38:03

%S 1,1,2,6,24,119,694,4580,33252,260202,2161837,18858720,171285237,

%T 1609282391,15561356705,154246419725,1562151687940,16121960812335,

%U 169178376076607,1801800479418116,19446010522240384,212394673429250090,2345064355131025130,26148064110299271293

%N Number of permutations in S_n that avoid the pattern 53124.

%H Anthony Guttmann, <a href="/A256199/b256199.txt">Table of n, a(n) for n = 0..25</a>

%H Nathan Clisby, Andrew R. Conway, Anthony J. Guttmann, Yuma Inoue, <a href="https://arxiv.org/abs/2109.13485">Classical length-5 pattern-avoiding permutations</a>, arXiv:2109.13485 [math.CO], 2021.

%H Zvezdelina Stankova-Frenkel and Julian West, <a href="http://arxiv.org/abs/math/0103152">A new class of Wilf-equivalent permutations</a>, arXiv:math/0103152 [math.CO], 2001.

%t avoid[n_, pat_] := Module[{p1 = pat[[1]], p2 = pat[[2]], p3 = pat[[3]], p4 = pat[[4]], p5 = pat[[5]], lseq = {}, i, p,

%t lpat = Subsets[(n + 1) - Range[n], {Length[pat]}],

%t psn = Permutations[Range[n]]},

%t For[i = 1, i <= Length[lpat], i++,

%t p = lpat[[i]];

%t AppendTo[lseq, Select[psn, MemberQ[#, {___, p[[p1]], ___, p[[p2]], ___, p[[p3]], ___, p[[p4]], ___, p[[p5]], ___}, {0}] &]];

%t ]; n! - Length[Union[Flatten[lseq, 1]]]];

%t Table[avoid[n, {5, 3, 1, 2, 4}], {n, 0, 8}] (* _Robert Price_, Mar 27 2020 *)

%Y Representatives for the 16 Wilf-equivalence patterns of length 5 are given in A116485, A047889, and A256195-A256208.

%Y Cf. A099952.

%K nonn

%O 0,3

%A _N. J. A. Sloane_, Mar 19 2015

%E More terms from _Anthony Guttmann_, Sep 29 2021

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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)