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!)
A116485 Number of permutations in S_n that avoid the pattern 12453 (or equivalently, 31245). 26

%I #69 Jun 18 2021 10:54:33

%S 1,1,2,6,24,119,694,4581,33286,260927,2174398,19053058,174094868,

%T 1648198050,16085475576,161174636600,1652590573612,17292601075489,

%U 184246699159418,1995064785620557,21919480341617102,244015986016996763,2749174129340156922,31313478171012371344

%N Number of permutations in S_n that avoid the pattern 12453 (or equivalently, 31245).

%C a(n) is also the number of permutations in S_n that avoid the pattern 21453 or any of its symmetries. The Wilf class consists of 16 permutations. - _David Bevan_, Jun 17 2021

%H Yonah Biers-Ariel, <a href="/A116485/b116485.txt">Table of n, a(n) for n = 0..37</a>

%H Yonah Biers-Ariel, <a href="/A116485/a116485_1.txt">Julia program to compute terms</a>

%H Miklos Bona, <a href="http://arxiv.org/abs/math/0403502">The limit of a Stanley-Wilf sequence is not always rational, and layered patterns beat monotone patterns</a>, arXiv:math/0403502 [math.CO], 2004.

%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.

%F Conjecture: a(n) + A158423(n) = n!. - _Benedict W. J. Irwin_, Mar 15 2016

%F The conjecture is true: All that is needed is to show that 23145 is Wilf-equivalent to 31245, but that’s obvious since they are inverses. - _Doron Zeilberger_ and _Yonah Biers-Ariel_, Feb 26 2019

%F The exponential growth rate is 9+4*sqrt(2). See [Bona 2004]. - _David Bevan_, Jun 17 2021

%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, {1, 2, 4, 5, 3}], {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. - _N. J. A. Sloane_, Mar 19 2015

%Y Cf. A099952, A158423.

%K nonn

%O 0,3

%A Zvezdelina Stankova (stankova(AT)mills.edu), Mar 19 2006

%E More terms from the Zvezdelina Stankova-Frenkel and Julian West paper. - _N. J. A. Sloane_, Mar 19 2015

%E More terms from _Doron Zeilberger_ and _Yonah Biers-Ariel_, Feb 26 2019

%E More terms from _Yonah Biers-Ariel_, Mar 04 2019

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 24 06:24 EDT 2024. Contains 371918 sequences. (Running on oeis4.)