login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A266240 Triangle read by rows: T(n,g) is the number of rooted 2n-face triangulations in an orientable surface of genus g. 8

%I #78 Jun 15 2017 03:10:21

%S 1,4,1,32,28,336,664,105,4096,14912,8112,54912,326496,396792,50050,

%T 786432,7048192,15663360,6722816,11824384,150820608,544475232,

%U 518329776,56581525,184549376,3208396800,17388675072,30117189632,11100235520,2966845440

%N Triangle read by rows: T(n,g) is the number of rooted 2n-face triangulations in an orientable surface of genus g.

%C Row n contains floor((n+3)/2) terms.

%H Gheorghe Coserea, <a href="/A266240/b266240.txt">Rows n = 0..200, flattened</a>

%H Edward A. Bender, Zhicheng Gao, L. Bruce Richmond, <a href="http://www.combinatorics.org/ojs/index.php/eljc/article/view/v15i1r51"> The map asymptotics constant tg</a>, The Electronic Journal of Combinatorics, Volume 15 (2008), Research Paper #R51.

%H Zhicheng Gao, <a href="http://www.combinatorics.org/ojs/index.php/eljc/article/view/v17i1r155">A Formula for the Bivariate Map Asymptotics Constants in terms of the Univariate Map Asymptotics Constants</a>, The Electronic Journal of Combinatorics, Volume 17 (2010), Research Paper #R155.

%H I. P. Goulden and D. M. Jackson, <a href="https://www.math.uwaterloo.ca/~ipgoulde/KPpapermar08.pdf">The KP hierarchy, branched covers, and triangulations</a>, Advances in Mathematics, Volume 219, Issue 3, 20 October 2008, Pages 932-951.

%F T(n,g) = f(n,g)/(3*n+2) for all n >= 0 and 0 <= g <= (n+1)/2, where f(n,g) satisfies the quadratic recurrence equation f(n,g) = 4*(3*n+2)/(n+1)*(n*(3*n-2)*f(n-2,g-1) + Sum_{i=-1..n-1} Sum_{h=0..g} f(i,h)*f(n-2-i, g-h)) for n >= 1 and g >= 0 with the initial conditions f(-1,0)=1/2, f(0,0)=2 and f(n,g)=0 for g < 0 or g > (n+1)/2.

%F For column g, as n goes to infinity we have T(n,g) ~ 3*6^((g-1)/2) * t(g) * n^(5*(g-1)/2) * (12*sqrt(3))^n, where t(g) = (A269418(g)/A269419(g)) / (2^(g-2) * gamma((5*g-1)/2)) and gamma is the Gamma function. - _Gheorghe Coserea_, Feb 26 2016

%e Triangle starts:

%e n\g [0] [1] [2] [3] [4]

%e [0] 1;

%e [1] 4, 1;

%e [2] 32, 28;

%e [3] 336, 664, 105;

%e [4] 4096, 14912, 8112;

%e [5] 54912, 326496, 396792, 50050;

%e [6] 786432, 7048192, 15663360, 6722816;

%e [7] 11824384, 150820608, 544475232, 518329776, 56581525;

%e [8] 184549376, 3208396800, 17388675072, 30117189632, 11100235520;

%e [9] ...

%t T[n_ /; n >= 0, g_] /; 0 <= g <= (n+1)/2 := f[n, g]/(3n+2); T[_, _] = 0; f[n_ /; n >= 1, g_ /; g >= 0] := f[n, g] = 4*(3*n+2)/(n+1)*(n*(3*n-2)*f[n - 2, g-1] + Sum[f[i, h]*f[n-2-i, g-h], {i, -1, n-1}, {h, 0, g}]); f[-1, 0] = 1/2; f[0, 0] = 2; f[_, _] = 0; Table[Table[T[n, g], {g, 0, Floor[(n + 1)/2]}], {n, 0, 9}] // Flatten (* _Jean-François Alcover_, Feb 27 2016 *)

%o (PARI)

%o N = 10;

%o m = matrix(N+2, N+2);

%o mget(n,g) = {

%o if (g < 0 || g > (n+1)/2, return(0));

%o return(m[n+2,g+1]);

%o }

%o mset(n,g,v) = {

%o m[n+2,g+1] = v;

%o }

%o Cubic() = {

%o mset(-1,0,1/2);

%o mset(0,0,2);

%o for (n = 1, N,

%o for (g = 0, (n+1)\2,

%o my(t1 = n * (3*n-2) * mget(n-2, g-1),

%o t2 = sum(i = -1, n-1, sum(h = 0, g,

%o mget(i,h) * mget(n-2-i, g-h))));

%o mset(n, g, 4*(3*n+2)/(n+1) * (t1 + t2))));

%o my(a = vector(N+1));

%o for (n = 0, N,

%o a[n+1] = vector(1 + (n+1)\2);

%o for (g = 0, (n+1)\2,

%o a[n+1][g+1] = mget(n, g));

%o a[n+1] = a[n+1]/(3*n+2));

%o return(a);

%o }

%o concat(Cubic())

%Y Columns k=0-4 give: A002005, A269473, A269474, A269475, A269476.

%Y Row sums give A062980.

%Y Cf. A269418, A269419.

%K nonn,tabf

%O 0,2

%A _Gheorghe Coserea_, Dec 25 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)