cp's OEIS Frontend

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.

User: Opel Jones

Opel Jones's wiki page.

Opel Jones has authored 2 sequences.

A343795 Number of Dumont permutations of the fourth kind of length 2n avoiding the pattern 312.

Original entry on oeis.org

1, 1, 3, 10, 39, 174, 872, 4805, 28474, 178099, 1160173, 7803860, 53924841, 381640934, 2761331130, 20400560942, 153738854242, 1180631743440, 9229687049249, 73372263658451, 592476077260123, 4854377724124700, 40315729803287046, 339065862485375334, 2885324166565733641
Offset: 0

Author

Alexander Burstein and Opel Jones, Apr 29 2021

Keywords

Comments

Dumont permutations of the fourth kind are permutations of even length where all deficiencies (drops) are even values at even positions.

Examples

			For n=2, a(2)=3 counts the permutations 1234, 1342, 1432.
		

References

  • O. Jones, Enumeration of Dumont permutations avoiding certain four-letter patterns, Ph.D. thesis, Howard University, 2019.

Crossrefs

Cf. A000108 (permutations avoiding 312), A024492, A048990, A110501 (length 2n Dumont permutations of 4th kind).

Programs

  • PARI
    seq(n)={my(h=sqrt(1-16*x + O(x*x^n)), F=sqrt((1-h)/(8*x)), G=(1-sqrt((1+h)/2))/(2*x), A=O(1)); forstep(k=n\3, 0, -1, my(f=Pol(F + O(x*x^k))); A = f/((1 - x*Pol(G + O(x^k)))^2 - x*f/(1 - x*Pol(G + O(x*x^k)) - x*f^2/(1 - x*A))) ); Vec(A + O(x*x^n))} \\ Andrew Howroyd, Apr 29 2021

Formula

Let F_k(x) be the truncation of the g.f. of A048990 to a polynomial of degree k. Let G_k(x) be the truncation of the g.f. of A024492 to a polynomial of degree k. Let G_{-1}(x) = 0. For k>=0, define A_k(x) recursively as follows: A_k(x) = F_k(x)/((1-x*G_{k-1}(x))^2-x*F_k(x)/(1-x*G_k(x)-x*F_k(x)^2/(1-x*A_{k+1}(x)))). Then A_0(x) is the g.f. of this sequence.

Extensions

Terms a(12) and beyond from Andrew Howroyd, Apr 29 2021

A308750 Number of Dumont permutations of the first kind of length 2n avoiding pattern 2143 (or pattern 3421).

Original entry on oeis.org

1, 1, 2, 7, 36, 239, 1892, 17015, 168503, 1799272, 20409644
Offset: 0

Author

Alexander Burstein and Opel Jones, Jun 21 2019

Keywords

Comments

Conjecture: The number of Dumont permutations of the first kind avoiding pattern 2143 equals the number of Dumont permutations of the first kind avoiding pattern 3421 for all n >= 0.
Data for n=7,8,9,10 is due to Michael Albert.

Examples

			For n=3, the 7 Dumont permutations of the first kind avoiding pattern 2143 are 356421, 364215, 435621, 563421, 564213, 634215, 642135, and the 7 Dumont permutations of the first kind avoiding pattern 3421 are 214365, 216435, 421365, 421563, 421635, 621435, 642135.
		

References

  • O. Jones, Enumeration of Dumont permutations avoiding certain four-letter patterns, Ph.D. thesis, Howard University, 2019.

Crossrefs