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-10 of 20 results. Next

A000260 Number of rooted simplicial 3-polytopes with n+3 nodes; or rooted 3-connected triangulations with 2n+2 faces; or rooted 3-connected trivalent maps with 2n+2 vertices.

Original entry on oeis.org

1, 1, 3, 13, 68, 399, 2530, 16965, 118668, 857956, 6369883, 48336171, 373537388, 2931682810, 23317105140, 187606350645, 1524813969276, 12504654858828, 103367824774012, 860593023907540, 7211115497448720, 60776550501588855
Offset: 0

Views

Author

Keywords

Comments

Number of rooted loopless planar maps with n edges. E.g., there are a(2)=3 loopless planar maps with 2 edges: two rooted paths (.-.-.) and one digon (.=.). - Valery A. Liskovets, Sep 25 2003
Number of intervals (i.e., ordered pairs (x,y) such that x<=y) in the Tamari lattice (rotation lattice of binary trees) of size n (see Pallo and Chapoton references). - Ralf Stephan, May 08 2007, Jean Pallo (Jean.Pallo(AT)u-bourgogne.fr), Sep 11 2007
Number of rooted triangulations of type [n, 0] (see Brown paper eq (4.8)). - Michel Marcus, Jun 23 2013
Equivalently, number of rooted bridgeless planar maps with n edges. - Noam Zeilberger, Oct 06 2016
The September 2018 talk by Noam Zeilberger (see link to video) connects three topics (planar maps, Tamari lattices, lambda calculus) and eight sequences: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827. - N. J. A. Sloane, Sep 17 2018
Number of uniquely sorted permutations of [2n+1] that avoid the pattern 231. Also the number of uniquely sorted permutations of [2n+1] that avoid 132. - Colin Defant, Jun 13 2019
The sequence 1,3,13,68,... appears naturally in integral geometry, namely in the algebra of unitarily invariant valuations on complex space forms. - Andreas Bernig, Feb 02 2020

Examples

			G.f. = 1 + x + 3*x^2 + 13*x^3 + 68*x^4 + 399*x^5 + 2530*x^6 + 16965*x^7 + ...
		

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • J. L. Gross and J. Yellen, eds., Handbook of Graph Theory, CRC Press, 2004; p. 714.
  • Handbook of Combinatorics, North-Holland '95, p. 891.
  • 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).
  • W. T. Tutte, The enumerative theory of planar maps, in A Survey of Combinatorial Theory (J. N. Srivastava et al. eds.), pp. 437-448, North-Holland, Amsterdam, 1973.

Crossrefs

Row sums of A342981.
Column 0 of A146305 and A341856; Column 2 of A255918.
Sequences mentioned in the Noam Zeilberger 2018 video: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827.

Programs

  • Magma
    [Binomial(4*n+1, n+1)-9*Binomial(4*n+1, n-1): n in [0..25]]; // Vincenzo Librandi, Nov 24 2016
  • Maple
    A000260 := proc(n)
        2*(4*n+1)!/((n+1)!*(3*n+2)!) ;
    end proc:
  • Mathematica
    Table[Binomial[4n+1,n+1]-9*Binomial[4n+1,n-1],{n,0,25}] (* Harvey P. Dale, Aug 23 2011 *)
    a[ n_] := SeriesCoefficient[ HypergeometricPFQ[ {1/2, 3/4, 1, 5/4}, {4/3, 5/3, 2}, 256/27 x], {x, 0, n}]; (* Michael Somos, Dec 23 2014 *)
    terms = 22; G[] = 0; Do[G[x] = 1+x*G[x]^4 + O[x]^terms, terms];
    CoefficientList[(2-G[x])*G[x]^2, x] (* Jean-François Alcover, Jan 13 2018, after Mark van Hoeij *)
  • PARI
    {a(n) = if( n<0, 0, 2 * (4*n + 1)! / ((n + 1)! * (3*n + 2)!))}; /* Michael Somos, Sep 07 2005 */
    
  • PARI
    {a(n) = binomial( 4*n + 2, n + 1) / ((2*n + 1) * (3*n + 2))}; /* Michael Somos, Mar 28 2012 */
    
  • Sage
    def a(n):
        n = ZZ(n)
        return (4*n + 2).binomial(n + 1) // ((2*n + 1) * (3*n + 2))
    # F. Chapoton, Aug 06 2015
    

Formula

a(n) = 2*(4*n+1)! / ((n+1)!*(3*n+2)!) = binomial(4*n+1, n+1) - 9*binomial(4*n+1, n-1).
G.f.: (2-g)*g^2 where g = 1 + x*g^4 is the g.f. of A002293. - Mark van Hoeij, Nov 10 2011
G.f.: hypergeom([1,1/2,3/4,5/4],[2,4/3,5/3],256*x/27) = 1 + 120*x/(Q(0)-120*x); Q(k) = 8*x*(2*k+1)*(4*k+3)*(4*k+5) + 3*(k+2)*(3*k+4)*(3*k+5) - 24*x*(k+2)*(2*k+3)*(3*k+4)*(3*k+5)*(4*k+7)*(4*k+9)/Q(k+1); (continued fraction). - Sergei N. Gladkovskii, Nov 25 2011
a(n) = binomial(4*n + 2, n + 1) / ((2*n + 1) * (3*n + 2)). - Michael Somos, Mar 28 2012
a(n) * (n+1) = A069271(n). - Michael Somos, Mar 28 2012
0 = F(a(n), a(n+1), ..., a(n+8)) for all n in Z where a(-1) = 3/4 and F() is a polynomial of degree 2 with integer coefficients and 29 monomials. - Michael Somos, Dec 23 2014
D-finite with recurrence: 3*(3*n+2)*(3*n+1)*(n+1)*a(n) - 8*(4*n+1)*(2*n-1)*(4*n-1)*a(n-1) = 0. - R. J. Mathar, Oct 21 2015
a(n) = Sum_{k=1..A000108(n)} k * A263191(n,k). - Alois P. Heinz, Nov 16 2015
a(n) ~ 2^(8*n+7/2) / (sqrt(Pi) * n^(5/2) * 3^(3*n+5/2)). - Vaclav Kotesovec, Feb 26 2016
E.g.f.: 3F3(1/2,3/4,5/4; 4/3,5/3,2; 256*x/27). - Ilya Gutkovskiy, Feb 01 2017
From Gheorghe Coserea, Aug 17 2017: (Start)
G.f. y(x) satisfies:
0 = x^3*y^4 + 3*x^2*y^3 + x*(8*x+3)*y^2 - (20*x-1)*y + 16*x-1.
0 = x*(256*x - 27)*deriv(y,x) - 8*x^2*y^3 - 25*x*y^2 + 4*(24*x-11)*y + 44.
(End)
From Karol A. Penson, Apr 06 2022: (Start)
a(n) = Integral_{x=0...256/27} x^n*W(x), where
W(x) = (sqrt(2)/Pi)*(h1(x) - h2(x) + h3(x)) and
h1(x) = 3F2([-6/12,-2/12, 2/12], [ 3/12, 9/12], (27*x)/256)/((x/2)^(1/2));
h2(x) = 3F2([-3/12, 1/12, 5/12], [ 6/12, 15/12], (27*x)/256)/(x^(1/4));
h3(x) = 3F2([ 3/12, 7/12, 11/12], [18/12, 21/12], (27*x)/256)/(x^(-1/4)*32).
This integral representation is unique as the solution of n-th Hausdorff power moment of the function W. Using only the definition of a(n), W(x) can be proven to be positive. W(x) is singular at x = 0 and for x > 0 is monotonically decreasing to zero at x = 256/27. (End)
a(n) = (1/27^n) * Product_{1 <= i <= j <= 3*n} (3*i + j + 3)/(3*i + j - 1). Cf. A006013. - Peter Bala, Feb 21 2023

Extensions

Edited by F. Chapoton, Feb 03 2011

A000109 Number of simplicial polyhedra with n vertices; simple planar graphs with n vertices and 3n-6 edges; maximal simple planar graphs with n vertices; planar triangulations with n vertices; triangulations of the sphere with n vertices; 3-connected cubic planar graphs on 2n-4 vertices.

Original entry on oeis.org

1, 1, 1, 2, 5, 14, 50, 233, 1249, 7595, 49566, 339722, 2406841, 17490241, 129664753, 977526957, 7475907149, 57896349553, 453382272049, 3585853662949, 28615703421545
Offset: 3

Views

Author

Keywords

Comments

Every planar triangulation on n >= 4 vertices is 3-connected (the connectivity either 3, 4, or 5) and its dual graph is a 3-connected cubic planar graph on 2n-4 vertices. - Manfred Scheucher, Mar 17 2023

References

  • G. Brinkmann and Brendan McKay, in preparation. [Looking at http://users.cecs.anu.edu.au/~bdm/publications.html, there are a few papers with Brinkmann that seem relevant, in particular #126 but also #97, 81, 158. Perhaps the right one is 126.]
  • M. B. Dillencourt, Polyhedra of small orders and their Hamiltonian properties. Tech. Rep. 92-91, Info. and Comp. Sci. Dept., Univ. Calif. Irvine, 1992.
  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • B. Grünbaum, Convex Polytopes. Wiley, NY, 1967, p. 424.
  • 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).

Crossrefs

Formula

From William P. Orrick, Apr 07 2021: (Start)
a(n) >= A007816(n-3)/n! = binomial(n,2)*(4*n-11)!/(n!*(3*n-6)!) for all n >= 4.
a(n) ~ A007816(n-3)/n! = binomial(n,2)*(4*n-11)!/(n!*(3*n-6)!) ~ (1/64)*sqrt(1/(6*Pi))*n^(-7/2)*(256/27)^(n-2), using the theorem that the automorphism group of a maximal planar graph is almost certainly trivial as n gets large. (Tutte)
(End)

Extensions

Extended by Brendan McKay and Gunnar Brinkmann using their program "plantri", Dec 19 2000
Definition clarified by Manfred Scheucher, Mar 17 2023

A000309 Number of rooted planar bridgeless cubic maps with 2n nodes.

Original entry on oeis.org

1, 1, 4, 24, 176, 1456, 13056, 124032, 1230592, 12629760, 133186560, 1436098560, 15774990336, 176028860416, 1990947110912, 22783499599872, 263411369705472, 3073132646563840, 36143187370967040, 428157758086840320, 5105072641718353920, 61228492804372561920
Offset: 0

Views

Author

Keywords

Comments

Also counts rooted planar non-separable triangulations with 3n edges. - Valery A. Liskovets, Dec 01 2003
Equivalently, rooted planar loopless triangulations with 2n triangles. - Noam Zeilberger, Oct 06 2016
Description trees of type (2,2) with n edges. (A description tree of type (a,b) is a rooted plane tree where every internal node is labeled by an integer between a and [b + sum of labels of its children], every leaf is labeled a, and the root is labeled [b + sum of labels of its children]. See Definition 1 and Section 5.2 of Cori and Schaeffer 2003.) - Noam Zeilberger, Oct 08 2017
The September 2018 talk by Noam Zeilberger (see link to video) connects three topics (planar maps, Tamari lattices, lambda calculus) and eight sequences: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827. - N. J. A. Sloane, Sep 17 2018

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • 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).

Crossrefs

Sequences mentioned in the Noam Zeilberger 2018 video: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827.

Programs

  • GAP
    List([0..20], n -> 2^(n+1)*Factorial(3*n)/(Factorial(n)* Factorial(2*n+2))); # G. C. Greubel, Nov 29 2018
  • Magma
    [2^(n+1)*Factorial(3*n)/(Factorial(n)*Factorial(2*n+2)): n in [0..20]]; // Vincenzo Librandi, Aug 10 2014
    
  • Maple
    a := n -> 2^(n+1)*(3*n)!/(n!*(2*n+2)!);
    A000309 := n -> -(-2)^(n-1)*(3*n+2)*hypergeom([-3*(n+1),-n,-n+1/3], [-n-1,-n-2/3], 1): seq(simplify(A000309(n)), n = 0..21); # Peter Luschny, Oct 28 2022
  • Mathematica
    f[n_] := 2^n(3n)!/((n + 1)!(2n + 1)!); Table[f[n], {n, 0, 19}] (* Robert G. Wilson v, Sep 21 2004 *)
    Join[{1},RecurrenceTable[{a[1]==1,a[n]==4a[n-1] Binomial[3n,3]/ Binomial[2n+2,3]}, a[n],{n,20}]] (* Harvey P. Dale, May 11 2011 *)
  • PARI
    a(n) = 2^(n+1)*(3*n)!/(n!*(2*n+2)!); \\ Michel Marcus, Aug 09 2014
    
  • Sage
    [2^n*factorial(3*n)/(factorial(n+1)*factorial(2*n+1))for n in range(20)] # G. C. Greubel Nov 29 2018
    

Formula

a(n) = 2^(n-1) * A000139(n) for n > 0.
a(n) = 4*a(n-1)*binomial(3*n, 3) / binomial(2*n+2, 3).
a(n) = 2^n*(3*n)!/ ( (n+1)!*(2*n+1)! ).
G.f.: (1/(6*x)) * (hypergeom([ -2/3, -1/3],[1/2],(27/2)*x)-1). - Mark van Hoeij, Nov 02 2009
a(n) ~ 3^(3*n+1/2)/(sqrt(Pi)*2^(n+2)*n^(5/2)). - Ilya Gutkovskiy, Oct 06 2016
D-finite with recurrence (n+1)*(2*n+1)*a(n) -3*(3*n-1)*(3*n-2)*a(n-1)=0. - R. J. Mathar, Nov 02 2018
a(n) = -(-2)^(n-1)*(3*n+2)*hypergeom([-3*(n+1),-n,-n+1/3], [-n-1,-n-2/3], 1). The a(n) are values of the polynomials A358091. - Peter Luschny, Oct 28 2022
From Karol A. Penson, Feb 24 2025: (Start)
G.f.: hypergeom([1/3, 2/3, 1], [3/2, 2], (27*z)/2).
G.f. A(z) satisfies: - 1 + 27*z + (-36*z + 1)*A(z) + 8*z*A(z)^2 + 16*z^2*A(z)^3 = 0.
G.f.: ((4*sqrt(4 - 54*z) + 12*i*sqrt(6)*sqrt(z))^(1/3)*(sqrt(z*(4 - 54*z)) - 9*i*sqrt(6)*z) + (4*sqrt(4 - 54*z) - 12*i*sqrt(6)*sqrt(z))^(1/3)*(9*i*sqrt(6)*z + sqrt(z*(4 - 54*z))) - 8*sqrt(z))/(48*z^(3/2)), where i = sqrt(-1) is the imaginary unit.
a(n) = Integral_{x=0..27/2} x^n*W(x), where W(x) = (6^(1/3)*(9 + sqrt(81 - 6*x))^(2/3)*(9*sqrt(3) - sqrt(27 - 2*x)) - 2^(2/3)*3^(1/6)*(27 + sqrt(81 - 6*x))*x^(1/3))/(48*Pi*(9 + sqrt(81 - 6*x))^(1/3)*x^(2/3)).
This integral representation is unique as W(x) is the solution of the Hausdorff power moment problem for x on (0, 27/2). Using only the definition of a(n), W(x) can be proven to be positive. W(x) is singular at x = 0, with singularity x^(-2/3), and for x > 0 is monotonically decreasing to zero at x = 27/2. (End)

Extensions

Definition clarified by Michael Albert, Oct 24 2008

A169808 Array T(n,k) read by antidiagonals: T(n,k) is the number of [n,k]-triangulations in the plane, n >= 0, k >= 0.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 3, 4, 5, 4, 4, 11, 14, 18, 16, 12, 28, 53, 69, 88, 78, 27, 91, 178, 295, 396, 489, 457, 82, 291, 685, 1196, 1867, 2503, 3071, 2938, 228, 1004, 2548, 5051, 8385, 12560, 16905, 20667, 20118, 733, 3471, 9876, 21018, 38078, 60736, 89038, 119571, 146381, 144113
Offset: 0

Views

Author

N. J. A. Sloane, May 25 2010

Keywords

Comments

"A closed bounded region in the plane divided into triangular regions with k+3 vertices on the boundary and n internal vertices is said to be a triangular map of type [n,k]." It is a [n,k]-triangulation if there are no multiple edges.
T(n,k) is the number of floor plan arrangements represented by 3-connected trivalent maps with n internal rooms and k+3 rooms adjacent to the outside.
"... may be evaluated from the results given by Brown."
The initial terms of this sequence can also be computed using the tool "plantri", in particular the command "./plantri -u -v -P -c2m2 [n]" will compute values for a diagonal. The '-c2' and '-m2' options indicate graphs must be biconnected and with minimum vertex degree 2. - Andrew Howroyd, Feb 22 2021

Examples

			Array begins:
============================================================
n\k |    0     1      2      3       4        5        6
----+-------------------------------------------------------
  0 |    1     1      1      3       4       12       27 ...
  1 |    1     2      4     11      28       91      291 ...
  2 |    1     5     14     53     178      685     2548 ...
  3 |    4    18     69    295    1196     5051    21018 ...
  4 |   16    88    396   1867    8385    38078   169918 ...
  5 |   78   489   2503  12560   60736   290595  1367374 ...
  6 |  457  3071  16905  89038  451613  2251035 11025626 ...
  7 | 2938 20667 119571 652198 3429943 17658448 89328186 ...
  ...
		

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.

Crossrefs

Columns k=0..3 are A002713, A005500, A005501, A005502.
Rows n=0..2 are A000207, A005503, A005504.
Antidiagonal sums give A005027.
Cf. A146305 (rooted), A169809 (achiral), A262586 (oriented).

Programs

Formula

T(n,k) = (A262586(n,k) + A169809(n,k)) / 2. - Andrew Howroyd, Feb 22 2021

Extensions

Edited by Andrew Howroyd, Feb 22 2021
a(29) corrected and terms a(36) and beyond from Andrew Howroyd, Feb 22 2021

A169809 Array T(n,k) read by antidiagonals: T(n,k) is the number of [n,k]-triangulations in the plane that have reflection symmetry, n >= 0, k >= 0.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 2, 3, 4, 3, 2, 6, 7, 10, 8, 5, 8, 18, 19, 29, 23, 5, 18, 26, 52, 57, 86, 68, 14, 23, 68, 82, 166, 176, 266, 215, 14, 56, 91, 220, 270, 524, 557, 844, 680, 42, 70, 248, 321, 769, 890, 1722, 1806, 2742, 2226, 42, 180, 318, 872, 1151, 2568, 2986, 5664, 5954, 9032, 7327
Offset: 0

Views

Author

N. J. A. Sloane, May 25 2010

Keywords

Comments

"A closed bounded region in the plane divided into triangular regions with k+3 vertices on the boundary and n internal vertices is said to be a triangular map of type [n,k]." It is a [n,k]-triangulation if there are no multiple edges.
"... may be evaluated from the results given by Brown."

Examples

			Array begins:
====================================================
n\k |   0   1    2    3     4     5     6      7
----+-----------------------------------------------
  0 |   1   1    1    2     2     5     5     14 ...
  1 |   1   2    3    6     8    18    23     56 ...
  2 |   1   4    7   18    26    68    91    248 ...
  3 |   3  10   19   52    82   220   321    872 ...
  4 |   8  29   57  166   270   769  1151   3296 ...
  5 |  23  86  176  524   890  2568  4020  11558 ...
  6 |  68 266  557 1722  2986  8902 14197  42026 ...
  7 | 215 844 1806 5664 10076 30362 49762 148208 ...
  ...
		

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.

Crossrefs

Columns k=0..3 are A002712, A005505, A005506, A005507.
Rows n=0..2 are A208355, A005508, A005509.
Antidiagonal sums give A005028.
Cf. A146305 (rooted), A169808 (unrooted), A262586 (oriented).

Programs

Extensions

Edited and terms a(36) and beyond from Andrew Howroyd, Feb 22 2021

A002713 Number of unrooted triangulations of the disk with n interior nodes and 3 nodes on the boundary.

Original entry on oeis.org

1, 1, 1, 4, 16, 78, 457, 2938, 20118, 144113, 1065328, 8068332, 62297808, 488755938, 3886672165, 31269417102, 254141551498, 2084129777764, 17228043363781, 143432427097935, 1201853492038096, 10129428318995227, 85826173629557200
Offset: 0

Views

Author

Keywords

Comments

These are also called [n,0]-triangulations.

References

  • 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).

Crossrefs

Column k=0 of A169808.

Formula

a(n) = (A002709(n) + A002712(n)) / 2.

Extensions

Terms a(9) onward from Max Alekseyev, May 11 2010
Name clarified by Andrew Howroyd, Feb 24 2021

A005501 Number of unrooted triangulations of a pentagon with n internal nodes.

Original entry on oeis.org

1, 4, 14, 69, 396, 2503, 16905, 119571, 874771, 6567181, 50329363, 392328944, 3102523829, 24839151315, 201011560316, 1642124006250, 13527821578754, 112279051170871, 938188211057701, 7887160187935198, 66672792338916470, 566452703137103796, 4834838039006782636
Offset: 0

Views

Author

Keywords

Comments

These are also called [n,2]-triangulations.
Graphs can be enumerated and counted using the tool "plantri", in particular the command "./plantri -s -P5 -c2m2 [n]". - Manfred Scheucher, Mar 08 2018

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Column k=2 of the array in A169808.

Formula

a(n) = (A005506(n) + A002711(n))/2. - Max Alekseyev, Oct 29 2012

Extensions

a(6)-a(11) from Manfred Scheucher, Mar 08 2018
Name clarified and terms a(12) and beyond from Andrew Howroyd, Feb 22 2021

A378103 Triangle read by rows: T(n,k) is the number of n-node connected unsensed planar maps with an external face and k triangular internal faces, n >= 3, 1 <= k <= 2*n - 5.

Original entry on oeis.org

1, 0, 1, 1, 0, 1, 1, 2, 1, 0, 0, 2, 4, 4, 5, 4, 0, 0, 2, 6, 10, 14, 14, 18, 16, 0, 0, 0, 7, 18, 35, 49, 63, 69, 88, 78, 0, 0, 0, 5, 28, 74, 131, 204, 274, 345, 396, 489, 457, 0, 0, 0, 0, 26, 126, 304, 574, 893, 1290, 1708, 2137, 2503, 3071, 2938, 0, 0, 0, 0, 13, 159, 582, 1396, 2613, 4274, 6270, 8709, 11433, 14227, 16905, 20667, 20118
Offset: 3

Views

Author

Ya-Ping Lu, Nov 16 2024

Keywords

Comments

The planar maps considered are without loops or isthmuses.
In other words, a(n) is the number of embeddings in the plane of connected bridgeless planar simple graphs with n vertices and k triangular internal faces.
The number of edges is n + k - 1.
The nonzero terms in row n range from k = floor(n/2) through 2*n-5 and, thus, the number of nonzero terms is 2n - floor(n/2) - 4 = A001651(n-2).

Examples

			Triangle begins:
n\k        1     2     3     4     5     6     7     8     9    10    11
----     ----  ----  ----  ----  ----  ----  ----  ----  ----  ----  ----
3          1
4          0     1     1
5          0     1     1     2     1
6          0     0     2     4     4     5     4
7          0     0     2     6    10    14    14    18    16
8          0     0     0     7    18    35    49    63    69    88    78
		

Crossrefs

Row sums are A377785.
Cf. A001651, A002713, A003094, A169808, A378336 (sensed), A378340 (achiral).
The final 3 terms of each row are in A002713, A005500, A005501.

Programs

Formula

T(n, 2*n-5) = A002713(n-3).
T(n,k) = (A378336(n,k) + A378340(n,k))/2.

Extensions

a(39) onwards from Andrew Howroyd, Nov 25 2024

A005027 Number of trivalent maps with n nodes.

Original entry on oeis.org

1, 2, 4, 16, 63, 328, 1933, 12633, 87466, 633015, 4717745, 35980100, 279418926, 2202903618, 17590599410, 142025760202, 1157868883224, 9520828261067, 78888071847324, 658158709983945, 5525145717439001, 46644670326913204, 395812792437224022, 3374572617006946447
Offset: 3

Views

Author

Keywords

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Antidiagonal sums of array in A169808.

Programs

Formula

a(n) = (A005028(n) + A341855(n))/2. - Andrew Howroyd, Feb 22 2021

Extensions

a(10) corrected and terms a(11) and beyond from Andrew Howroyd, Feb 22 2021

A005028 Number of symmetric trivalent maps with n nodes.

Original entry on oeis.org

1, 2, 4, 12, 33, 102, 312, 1010, 3256, 10836, 36094, 122544, 417150, 1437712, 4970904, 17333772, 60638124, 213435264, 753520804, 2672606464, 9505230397, 33928264990, 121400935184, 435660446342, 1566809204928, 5648450745204, 20402191885146, 73842311224632
Offset: 3

Views

Author

Keywords

References

  • C. F. Earl and L. J. March, Architectural applications of graph theory, pp. 327-355 of R. J. Wilson and L. W. Beineke, editors, Applications of Graph Theory. Academic Press, NY, 1979.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Antidiagonal sums of the array in A169809.
Cf. A005027.

Extensions

Terms a(11) and beyond from Andrew Howroyd, Feb 22 2021
Showing 1-10 of 20 results. Next