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.

Showing 1-3 of 3 results.

A264755 Triangle T(n,g) read by rows: Partition of the set of (2n-1)! circular permutations on 2n elements according to the minimal genus g of the surface in which one can immerse the non-simple closed curves with n crossings determined by those permutations.

Original entry on oeis.org

1, 4, 2, 42, 66, 12, 780, 2652, 1608, 21552, 132240, 183168, 25920, 803760, 7984320, 20815440, 10313280
Offset: 1

Views

Author

Robert Coquereaux, Nov 23 2015

Keywords

Comments

Each line of the triangle adds up to an odd factorial (2n-1)!. Example (line n=5): 21552 + 132240 + 183168 + 25920 = 362880 = 9!.
The lengths of the rows of the triangle do not strictly increase with n, the first lengths are (1,2,3,3,4,4,...).

Examples

			Taking n = 5 crossings and genus g=0, one obtains a subset of T(5, 0) = 21552 circular permutations of Sym(10) which correspond, in the OO case (the circle is oriented, the sphere is oriented), to the union 179 orbits of length 120=5!/1 and 3 orbits of length 24=5!/5 with respective centralizers of order 1 and 5 under the action of the symmetric group Sym(5) acting on this subset: 179*120 + 3*24 = 21552. The total number of orbits 179 + 3 = 182 = A008986(5) = A260285(5, 0) is the number of immersed spherical curves (g=0) with 5 crossings, in the OO case. The next entry, T(5, 1) = 132240, gives the number of circular permutations that describe immersed closed curves in a torus (g=1), with n=5 crossings, up to stable geotopy; the number of such closed curves in the OO case is 1102 = A260285(5, 1).
Triangle begins:
  1
  4 2
  42 66 12
  780 2652 1608
  21552 132240 183168 25920
  803760 7984320 20815440 10313280
  ...
		

Crossrefs

Programs

  • Magma
    /* Example: line n=5 of the triangle */
    n:=5;
    G:=Sym(2*n);
    CG := Classes(G);
    pos:= [j: j in [1..#CG]  | CycleStructure(CG[j][3]) eq [<2*n,1>]][1];
    circularpermutations:=Class(G,CG[pos][3]); //circularpermutations
    doubleG := Sym(4*n);
    psifct := function(per);
    perinv:=per^(-1);
    res:= [IsOdd(j) select (j+1)^per  else j-1 + 2*n : j in [1..2*n] ];
    resbis := [IsOdd((j-2*n)^perinv) select  (j-2*n)^perinv +1 +2*n   else ((j-2*n)^perinv -1)^per : j in [2*n+1..4*n] ];
    res cat:= resbis;
    return doubleG!res;
    end function;
    numberofcycles := function(per);   ess :=   CycleStructure(per); return &+[ess[i,2]: i in [1..#ess]]; end function;
    supernumberofcycles := function(per); return  numberofcycles(psifct(per)) ; end function;
    {* supernumberofcycles(x) : x in circularpermutations  *};
    quit;

A268557 Number of immersions of unoriented circle into oriented sphere with n labeled double points, where additionally each double point distinguishes one of the 4 half-edges incident to it.

Original entry on oeis.org

2, 32, 1344, 99840, 11034624, 1646100480, 311739678720, 71904311377920, 19608902534430720, 6183679018118676480, 2216537535694661222400, 890848169343849804595200, 397015474116844831585075200, 194397347759742363293555097600, 103774855190390649524854141747200
Offset: 1

Views

Author

N. J. A. Sloane, Mar 02 2016

Keywords

Crossrefs

Cf. A268567.

Formula

a(n) = A268567(n) * 4^n / 2 [proof: a (2*4^(n-1))-to-one map to the labeled immersions of an oriented circle is can be defined e.g. by choosing the orientation of the circle along the distinguished half-edge of the vertex #1]. - Andrey Zabolotskiy, Jan 14 2025

Extensions

New name and terms a(7) onwards from Andrey Zabolotskiy, Jan 21 2025

A268560 Number of bicolored maps defined by immersions of unoriented circle into oriented sphere with n double points with edges labeled 1..2*n such that labels of successive edges along the curve (starting at any edge, going in the direction determined by the coloring) are encountered in pairs of the form {2*m-1, 2*m} (in either order).

Original entry on oeis.org

2, 16, 336, 12480, 689664, 51440640, 4870932480, 561752432640, 76597275525120, 12077498082263040, 2164587437201817600, 434984457687426662400, 96927605985557820211200, 23730144990202925206732800, 6333914501366616792288460800, 1831049666989439061980086272000
Offset: 1

Views

Author

N. J. A. Sloane, Mar 02 2016

Keywords

Crossrefs

Formula

a(n) = A268567(n) * 2^n [proof: labeling the vertex incident to a pair {2*m-1, 2*m} by m defines a 2^n-to-one map from edge-labeled curves to vertex-labeled curves; and a bijection between vertex-labeled bicolored unoriented immersions and vertex-labeled (uncolored) oriented immersions can be defined e.g. by requiring that the pair of edges going from vertex #1 is incident to a shaded region]. - Andrey Zabolotskiy, Jan 14 2025

Extensions

New name and terms a(11) onwards from Andrey Zabolotskiy, Jan 21 2025
Showing 1-3 of 3 results.