login
A294719
Number of permutations of [n] avoiding {2341, 2143, 4123}.
1
1, 1, 2, 6, 21, 70, 212, 597, 1610, 4248, 11107, 28966, 75552, 197251, 515476, 1348060, 3527067, 9230832, 24162270, 63251763, 165587512, 433503706, 1134914677, 2971229196, 7778759206, 20365031725, 53316315822, 139583891642, 365435330505, 956722066178, 2504730828592, 6557470373721
OFFSET
0,3
LINKS
D. Callan, T. Mansour, Enumeration of small Wilf classes avoiding 1324 and two other 4-letter patterns, arXiv:1705.00933 [math.CO] (2017), Table 2 No 17.
FORMULA
From Colin Barker, Nov 10 2017: (Start)
G.f.: (1 - 7*x + 20*x^2 - 29*x^3 + 25*x^4 - 13*x^5 + x^7) / ((1 - x)^5*(1 - 3*x + x^2)).
a(n) = (1/60)*(3*2^(1-n)*(5*2^(n+1) - (3-sqrt(5))^n*(-5+sqrt(5)) + (3+sqrt(5))^n*(5+sqrt(5))) - 190*n + 115*n^2 - 50*n^3 + 5*n^4) for n > 0.
a(n) = 8*a(n-1) - 26*a(n-2) + 45*a(n-3) - 45*a(n-4) + 26*a(n-5) - 8*a(n-6) + a(n-7) for n > 7.
(End)
MAPLE
cn := [1, -7, 20, -29, 25, -13, 0, 1] ;
p := add(cn[i]*x^(i-1), i=1..nops(cn)) ;
q := (1-x)^5*(1-3*x+x^2) ;
taylor(p/q, x=0, 40) ;
gfun[seriestolist](%) ;
PROG
(PARI) Vec((1 - 7*x + 20*x^2 - 29*x^3 + 25*x^4 - 13*x^5 + x^7) / ((1 - x)^5*(1 - 3*x + x^2)) + O(x^40)) \\ Colin Barker, Nov 10 2017
CROSSREFS
Sequence in context: A116811 A294718 A116794 * A116795 A116766 A116825
KEYWORD
nonn,easy
AUTHOR
R. J. Mathar, Nov 07 2017
STATUS
approved