OFFSET
0,4
COMMENTS
a(n) is the number of 132-avoiding permutations composed only of 3-cycles and fixed points.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..1000
Kassie Archer and Robert P. Laudone, Pattern-restricted permutations of small order, arXiv:2402.15463 [math.CO], 2024.
Seiichi Manyama, Recurrence of order 34
FORMULA
G.f.: c(x^3)/(sqrt(c(x^3)*(4-3*c(x^3)))-x*c(x^3)) where c(x) is the generating function for the Catalan numbers.
From Seiichi Manyama, Jul 02 2026: (Start)
G.f. A(x) satisfies (x^4+16*x^3+2*x^2-3)*A(x)^4 + (4*x^3+4*x)*A(x)^3 + (6*x^2+2)*A(x)^2 + 4*x*A(x) + 1 = 0.
a(n) = 1 + 2 * Sum_{i=0..floor(n/3)-1} (n-3*i-2)/(i+1) * Sum_{j=0..i} 4^j * binomial((n-3*i-2)/2+j,j) * binomial(2*i-j,i).
D-finite with a recurrence of order 34 (see link). (End)
PROG
(PARI) my(N=44, x='x+O('x^N), C(x)=(1-sqrt(1-4*x))/(2*x)); Vec(C(x^3)/(sqrt(C(x^3)*(4-3*C(x^3)))-x*C(x^3))) \\ Joerg Arndt, Feb 27 2024
(PARI) a(n) = 1+2*sum(i=0, n\3-1, (n-3*i-2)/(i+1)*sum(j=0, i, 4^j*binomial((n-3*i-2)/2+j, j)*binomial(2*i-j, i))); \\ Seiichi Manyama, Jul 02 2026
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Kassie Archer, Feb 26 2024
STATUS
approved
