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-5 of 5 results.

A238358 Number of genus-8 rooted maps with n edges.

Original entry on oeis.org

11288163762500625, 2927974178219879250, 394372363395179602125, 36751560969705187643982, 2663973075006196131775590, 160098273686603663417293308, 8303278159618015743881266599, 381958851175370643701603049354, 15896435050196091382215375181044, 607566907750822335161584110201960
Offset: 16

Views

Author

Joerg Arndt, Feb 26 2014

Keywords

Crossrefs

Column g=8 of A269919.
Cf. A239922 (unrooted sensed), A348801 (unrooted unsensed).
Rooted maps with n edges of genus g for 0 <= g <= 10: A000168, A006300, A006301, A104742, A215402, A238355, A238356, A238357, this sequence, A238359, A238360.

Programs

  • 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, 8];
    Table[a[n], {n, 16, 30}] (* Jean-François Alcover, Jul 20 2018 *)
  • PARI
    \\ see A238396

A379438 Triangle read by rows: T(n,k) is the number of sensed combinatorial maps with n edges and genus k, 0 <= k <= floor(n/2).

Original entry on oeis.org

1, 2, 4, 1, 14, 6, 57, 46, 4, 312, 452, 106, 2071, 4852, 2382, 131, 15030, 52972, 46680, 8158, 117735, 587047, 830848, 313611, 14118, 967850, 6550808, 13804864, 9326858, 1369446, 8268816, 73483256, 218353000, 236095958, 74803564, 2976853, 72833730, 827801468, 3328822880, 5345316004, 3023693380, 391288854
Offset: 0

Views

Author

Andrew Howroyd, Jan 16 2025

Keywords

Examples

			Triangle begins:
  n\k     [0]      [1]       [2]      [3]      [4]
  [0]      1;
  [1]      2;
  [2]      4,       1;
  [3]     14,       6;
  [4]     57,      46,        4;
  [5]    312,     452,      106;
  [6]   2071,    4852,     2382,     131;
  [7]  15030,   52972,    46680,    8158;
  [8] 117735,  587047,   830848,  313611,   14118;
  [9] 967850, 6550808, 13804864, 9326858, 1369446;
  ...
		

Crossrefs

Row sums are A170946.
Cf. A269919 (rooted), A379439 (unsensed), A380234 (achiral), A380235.

A348801 a(n) = number of unsensed genus 8 maps with n edges.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176377605783906, 43058445711817178, 5477393987229533288, 483573171728920541590, 33299663456795126129156
Offset: 0

Views

Author

Michael De Vlieger, Nov 01 2021

Keywords

Crossrefs

Column k=8 of A379439.
Cf. A238358 (rooted), A239922 (sensed).

A239923 Number of unrooted maps with n edges of (orientable) genus 9.

Original entry on oeis.org

324039613564554401, 92075738368876748710, 13524920870667446819490, 1368913666872922446728390, 107367565606418008964576338, 6957847952983327441248445908, 387883525432376769353915075571
Offset: 18

Views

Author

Alain Giorgetti, Mar 29 2014

Keywords

Crossrefs

Column k=9 of A379438.
Cf. A238359 (rooted).

A239924 Number of unrooted maps with n edges of (orientable) genus 10.

Original entry on oeis.org

380751174738424280720, 123800701289478148878890, 20679270860399513431761798, 2366561529248819497695971912, 208773430159079852919281433050, 15143758135416335992767275804168, 940742579115450773885994408739386
Offset: 20

Views

Author

Alain Giorgetti, Mar 29 2014

Keywords

Crossrefs

Column k=10 of A379438.
Cf. A238360 (rooted).
Showing 1-5 of 5 results.