OFFSET
0,5
REFERENCES
E. R. Canfield, Calculating the number of rooted maps on a surface, Congr. Numerantium, 76 (1990), 21-34.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
T. R. S. Walsh, Combinatorial Enumeration of Non-Planar Maps. Ph.D. Dissertation, Univ. of Toronto, 1971.
LINKS
T. D. Noe, Table of n, a(n) for n=0..30 (from Mednykh and Nedela)
E. A. Bender and E. R. Canfield, The number of rooted maps on an orientable surface, J. Combin. Theory, B 53 (1991), 293-299.
Sean R. Carrell, Guillaume Chapuy, Simple recurrence formulas to count maps on orientable surfaces, arXiv:1402.6300 [math.CO], (19-March-2014).
S. R. Finch, An exceptional convolutional recurrence, arXiv:2408.12440 [math.CO], 22 Aug 2024.
T. R. S. Walsh and A. B. Lehman, Counting rooted maps by genus, J. Comb. Thy B13 (1972), 122-141 and 192-218.
MATHEMATICA
T[0, 0] = 1; T[n_, g_] /; g < 0 || g > n/2 = 0; T[n_, g_] := T[n, g] = ((4 n - 2)/3 T[n - 1, g] + (2 n - 3) (2 n - 2) (2 n - 1)/12 T[n - 2, g - 1] + 1/2 Sum[(2 k - 1) (2 (n - k) - 1) T[k - 1, i] T[n - k - 1, g - i], {k, 1, n - 1}, {i, 0, g}])/((n + 1)/6);
a[n_] := T[n, 2];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Jul 20 2018 *)
PROG
(PARI)
A005159_ser(N) = my(x='x+O('x^(N+1))); (1 - sqrt(1-12*x))/(6*x);
A006301_ser(N) = {
my(y=A005159_ser(N+1));
-y*(y-1)^4*(4*y^4 - 16*y^3 + 153*y^2 - 148*y + 196)/(9*(y-2)^7*(y+2)^4);
};
concat([0, 0, 0, 0], Vec(A006301_ser(19))) \\ Gheorghe Coserea, Jun 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Joerg Arndt, Feb 26 2014
STATUS
approved