login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111053 Number of permutations which avoid the patterns 1324 and (2143 with Bruhat restriction {2<->3}). Also the number of permutations whose graphs are acyclic. 0
1, 2, 6, 22, 89, 379, 1661, 7405, 33367, 151398, 690147, 3156112, 14465746, 66409493, 305232025, 1404129530, 6463476538, 29767212095, 137142651679, 632021380433, 2913316615372, 13431328632593, 61931182541194, 285592218851606, 1317104663887309, 6074682489939359, 28018852961838675, 129239701278757210 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

S. Butler, On permutations which are 1324 and {overline 2143} avoiding.

M. Bousquet-Melou and S. Butler, Forest-like permutations

FORMULA

G.f.: ((1-X)*(1-4*X-2*X*X)-(1-5*X)*sqrt(1-4*X))/2/(1-5*X+2*X^2-X^3. - Ralf Stephan, May 09 2007

G.f.: 2 * x * (1 - 4*x - x^2) / ((1 - x) * (1 - 4*x - 2*x^2) + (1 - 5*x) * sqrt(1 - 4*x)). - Michael Somos, Jan 12 2012

G.f. is the power series composition of g.f. A204200 and g.f. A000108 (Catalan) with offset 1. - Michael Somos, Jan 12 2012

EXAMPLE

x + 2*x^2 + 6*x^3 + 22*x^4 + 89*x^5 + 379*x^6 + 1661*x^7 + 7405*x^8 + ...

PROG

(PARI) x='x+O('x^66); /* that many terms */

gf=((1-x)*(1-4*x-2*x^2)-(1-5*x)*sqrt(1-4*x))/(2*(1-5*x+2*x^2-x^3));

Vec(gf) /* show terms */ /* Joerg Arndt, Jun 25 2011 */

(PARI) {a(n) = if( n<0, 0, polcoeff( 2 * x * (1 - 4*x - x^2) / ((1 - x) * (1 - 4*x - 2*x^2) + (1 - 5*x) * sqrt(1 - 4*x + x * O(x^n))), n))} /* Michael Somos, Jan 12 2012 */

CROSSREFS

Cf. A204200.

Sequence in context: A165522 A150267 A165540 * A165541 A165542 A165543

Adjacent sequences:  A111050 A111051 A111052 * A111054 A111055 A111056

KEYWORD

nonn

AUTHOR

Steven K. Butler (sbutler(AT)math.ucsd.edu), Oct 06 2005

EXTENSIONS

Added more terms, Joerg Arndt, Jun 25 2011.

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 21:07 EST 2012. Contains 205856 sequences.