A379430
Array read by antidiagonals: A(n,k) is the number of sensed planar maps with n vertices and k faces, n >= 1, k >= 1.
Original entry on oeis.org
1, 1, 1, 1, 2, 1, 2, 5, 5, 2, 3, 14, 23, 14, 3, 6, 42, 108, 108, 42, 6, 14, 140, 501, 761, 501, 140, 14, 34, 473, 2264, 4744, 4744, 2264, 473, 34, 95, 1670, 10087, 27768, 38495, 27768, 10087, 1670, 95, 280, 5969, 44310, 153668, 279698, 279698, 153668, 44310, 5969, 280
Offset: 1
Array begins:
=========================================================
n\k | 1 2 3 4 5 6 7 8 ...
----+----------------------------------------------------
1 | 1 1 1 2 3 6 14 34 ...
2 | 1 2 5 14 42 140 473 1670 ...
3 | 1 5 23 108 501 2264 10087 44310 ...
4 | 2 14 108 761 4744 27768 153668 ...
5 | 3 42 501 4744 38495 279698 ...
6 | 6 140 2264 27768 279698 ...
7 | 14 473 10087 153668 ...
8 | 34 1670 44310 ...
...
As a triangle, rows give the number of edges (first row is 0 edges):
1;
1, 1;
1, 2, 1;
2, 5, 5, 2;
3, 14, 23, 14, 3;
6, 42, 108, 108, 42, 6;
14, 140, 501, 761, 501, 140, 14;
34, 473, 2264, 4744, 4744, 2264, 473, 34;
95, 1670, 10087, 27768, 38495, 27768, 10087, 1670, 95;
...
A006443
Number of achiral planar maps with n edges.
Original entry on oeis.org
1, 2, 4, 14, 47, 184, 761, 3314, 14997, 69886, 333884, 1626998, 8067786, 40580084, 206734083, 1064666724, 5536480877, 29036188788, 153450351924, 816503772830, 4371551433888
Offset: 0
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- V. A. Liskovets, Some easily derivable sequences, J. Integer Sequences, 3 (2000), #00.2.2.
- Timothy R. Walsh, Number of sensed planar maps with n edges and m vertices, p. 43.
- Nicholas C. Wormald, Counting unrooted planar maps, Discrete Math. 36 (1981), no. 2, 205-225.
A006403
Number of unsensed 2-connected planar maps with n edges.
Original entry on oeis.org
0, 1, 2, 3, 6, 15, 36, 114, 396, 1565, 6756, 31563, 154370, 785113, 4099948, 21870704, 118624544, 652485364, 3631820462, 20426666644, 115949791342, 663640383400, 3826858500878, 22218232389849, 129802836253994
Offset: 1
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- Timothy R. Walsh, personal communication.
A001853
Total height of trees with n nodes.
Original entry on oeis.org
0, 1, 3, 8, 22, 58, 158, 425, 1161, 3175, 8751, 24192, 67239, 187459, 524579, 1472086, 4142639, 11685501, 33036492, 93583873, 265589158, 754998424, 2149588878, 6128914829, 17497927510, 50017546412, 143137957590, 410062891934, 1175925220607, 3375322972597
Offset: 1
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
A000184
Number of genus 0 rooted maps with 3 faces with n vertices.
Original entry on oeis.org
2, 22, 164, 1030, 5868, 31388, 160648, 795846, 3845020, 18211380, 84876152, 390331292, 1775032504, 7995075960, 35715205136, 158401506118, 698102372988, 3059470021316, 13341467466520, 57918065919924, 250419305769512, 1078769490401032, 4631680461623664, 19825379450255900, 84622558822506328, 360270317908904328, 1530148541536781488, 6484511936352543096, 27423786092731382000, 115756362341775227888
Offset: 2
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- 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.
- Alois P. Heinz, Table of n, a(n) for n = 2..500
- Richard P. Stanley, CATALAN ADDENDUM, version of Jul 19, 2008, p. 24. [From _Jonathan Vos Post_, Aug 16 2008]
- M. S. Tokmachev, Correlations Between Elements and Sequences in a Numerical Prism, Bulletin of the South Ural State University, Ser. Mathematics. Mechanics. Physics, 2019, Vol. 11, No. 1, 24-33.
- W. T. Tutte, On the enumeration of planar maps, Bull. Amer. Math. Soc. 74 1968 64-74.
- T. R. S. Walsh and A. B. Lehman, Counting rooted maps by genus, J. Comb. Thy B13 (1972), 122-141 and 192-218.
- Notes
-
[n*((n+1)*(n+2)*Catalan(n+1) - 3*4^n)/12: n in [2..30]]; // G. C. Greubel, Jul 18 2024
-
a[n_] := 1/12*(2^(n+1)*(2*n+1)!!/(n-1)!-3*4^n*n); Table[a[n], {n, 2, 31}] (* Jean-François Alcover, Mar 12 2014 *)
-
[n*(2*(2*n+1)*binomial(2*n,n) - 3*4^n)//12 for n in range(2,30)] # G. C. Greubel, Jul 18 2024
A004139
Odd primes excluding 5.
Original entry on oeis.org
3, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241
Offset: 1
- John H. Conway, R. K. Guy, The Book of Numbers, Copernicus Press, p. 162.
A000365
Number of genus 0 rooted planar maps with 4 faces and n vertices.
Original entry on oeis.org
5, 93, 1030, 8885, 65954, 442610, 2762412, 16322085, 92400330, 505403910, 2687477780, 13957496098, 71053094420, 355548314180, 1752827693528, 8529176056965, 41026491589722, 195327793313790, 921451498774660, 4311086414580022, 20019238138410940
Offset: 3
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- 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.
-
nn = 20; CoefficientList[Series[x^2 (1 - Sqrt[1 - 4 x]) (7 + 4 x - 2 Sqrt[1 - 4 x])/(2 (4 x - 1)^4), {x, 0, nn}], x] (* T. D. Noe, Jun 19 2012 *)
-
seq(n)={my(g=sqrt(1-4*x + O(x*x^n))); Vec((1-g)*(7+4*x-2*g)/(2*(1-4*x)^4))} \\ Andrew Howroyd, Mar 27 2021
A005645
Number of sensed 3-connected planar maps with n edges.
Original entry on oeis.org
1, 0, 1, 2, 3, 4, 15, 32, 89, 266, 797, 2496, 8012, 26028, 85888, 286608, 965216, 3278776, 11221548, 38665192, 134050521, 467382224, 1638080277, 5768886048, 20407622631, 72494277840, 258527335373, 925322077852, 3323258053528, 11973883092034, 43273374700200, 156836969693756, 569967330200576, 2076647113454878, 7584534277720818, 27764845224462192, 101862027752012402, 374484866509396780, 1379489908513460150
Offset: 6
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
A006444
Number of achiral 2-connected planar maps with n edges.
Original entry on oeis.org
0, 1, 2, 3, 6, 14, 30, 77, 196, 525, 1414, 3960, 11056, 31636, 90818, 264657, 774146, 2289787, 6798562, 20354005, 61164374, 184985060, 561433922, 1712696708, 5241637812
Offset: 1
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- T. R. S. Walsh, personal communication.
A034854
Triangle giving number of labeled trees with n >= 3 nodes and diameter d >= 2.
Original entry on oeis.org
3, 4, 12, 5, 60, 60, 6, 210, 720, 360, 7, 630, 6090, 7560, 2520, 8, 1736, 47040, 112560, 80640, 20160, 9, 4536, 363384, 1496880, 1829520, 907200, 181440, 10, 11430, 2913120, 19207440, 36892800, 28274400, 10886400, 1814400
Offset: 0
Triangle begins:
3;
4, 12;
5, 60, 60;
6, 210, 720, 360;
7, 630, 6090, 7560, 2520;
...
More terms from Pab Ter (pabrlos(AT)yahoo.com), May 27 2004
Comments