This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A256196 #25 Sep 29 2021 02:35:31 %S A256196 1,1,2,6,24,119,694,4579,33216,259401,2147525,18632512,167969934, %T A256196 1563027614,14937175825,146016423713,1455402205257,14753501614541, %U A256196 151783381341695,1582029822426003,16681492660789425,177726496203056670,1911230701872865231,20726637978574528119 %N A256196 Number of permutations in S_n that avoid the pattern 31524. %H A256196 Anthony Guttmann, <a href="/A256196/b256196.txt">Table of n, a(n) for n = 0..25</a> %H A256196 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 A256196 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 A256196 avoid[n_, pat_] := Module[{p1 = pat[[1]], p2 = pat[[2]], p3 = pat[[3]], p4 = pat[[4]], p5 = pat[[5]], lseq = {}, i, p, %t A256196 lpat = Subsets[(n + 1) - Range[n], {Length[pat]}], %t A256196 psn = Permutations[Range[n]]}, %t A256196 For[i = 1, i <= Length[lpat], i++, %t A256196 p = lpat[[i]]; %t A256196 AppendTo[lseq, Select[psn, MemberQ[#, {___, p[[p1]], ___, p[[p2]], ___, p[[p3]], ___, p[[p4]], ___, p[[p5]], ___}, {0}] &]]; %t A256196 ]; n! - Length[Union[Flatten[lseq, 1]]]]; %t A256196 Table[avoid[n, {3, 1, 5, 2, 4}], {n, 0, 8}] (* _Robert Price_, Mar 27 2020 *) %Y A256196 Representatives for the 16 Wilf-equivalence patterns of length 5 are given in A116485, A047889, and A256195-A256208. %Y A256196 Cf. A099952. %K A256196 nonn %O A256196 0,3 %A A256196 _N. J. A. Sloane_, Mar 19 2015 %E A256196 a(14)-a(16) from _Bert Dobbelaere_, Mar 18 2021 %E A256196 More terms from _Anthony Guttmann_, Sep 29 2021