A005500
Number of unrooted triangulations of a quadrilateral with n internal nodes.
Original entry on oeis.org
1, 2, 5, 18, 88, 489, 3071, 20667, 146381, 1072760, 8071728, 61990477, 484182622, 3835654678, 30757242535, 249255692801, 2038827903834, 16815060576958, 139706974995635, 1168468902294726, 9831504782276593, 83174244225508659, 707159273362126228, 6039827641569969225
Offset: 0
- 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).
- Andrew Howroyd, Table of n, a(n) for n = 0..200
- G. Brinkmann and B. McKay, Plantri (program for generation of certain types of planar graph)
- 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. (Annotated scanned copy)
- C. F. Earl & N. J. A. Sloane, Correspondence, 1980-1981
Name clarified and terms a(13) and beyond from
Andrew Howroyd, Feb 22 2021
A262586
Square array T(n,m) (n>=0, m>=0) read by antidiagonals downwards giving number of rooted triangulations of type [n,m] up to orientation-preserving isomorphisms.
Original entry on oeis.org
1, 1, 1, 1, 2, 1, 4, 5, 6, 5, 6, 16, 21, 26, 24, 19, 48, 88, 119, 147, 133, 49, 164, 330, 538, 735, 892, 846, 150, 559, 1302, 2310, 3568, 4830, 5876, 5661, 442, 1952, 5005, 9882, 16500, 24596, 33253, 40490, 39556, 1424, 6872, 19504, 41715, 75387, 120582, 176354, 237336, 290020, 286000, 4522
Offset: 0
Array begins:
==============================================================
n\k | 0 1 2 3 4 5 6 ...
----+---------------------------------------------------------
0 | 1 1 1 4 6 19 49 ...
1 | 1 2 5 16 48 164 559 ...
2 | 1 6 21 88 330 1302 5005 ...
3 | 5 26 119 538 2310 9882 41715 ...
4 | 24 147 735 3568 16500 75387 338685 ...
5 | 133 892 4830 24596 120582 578622 2730728 ...
6 | 846 5876 33253 176354 900240 4493168 22037055 ...
7 | 5661 40490 237336 1298732 6849810 35286534 178606610 ...
...
The first few antidiagonals are:
1,
1,1,
1,2,1,
4,5,6,5,
6,16,21,26,24,
19,48,88,119,147,133,
49,164,330,538,735,892,846,
...
- Andrew Howroyd, Table of n, a(n) for n = 0..1325 (first 51 antidiagonals).
- Jean-François Alcover, Mathematica code
- W. G. Brown, Enumeration of Triangulations of the Disk, Proc. Lond. Math. Soc. s3-14 (1964) 746-768. [Annotated scanned copy]. See Table 1 (with a typo at G(n=1,m=6)).
- L. March and C. F. Earl, On Counting Architectural Plans, Environment and Planning B, 4 (1977), 57-80. See Table 2.
-
A262586 := proc(n,m)
BrownG(n,m) ; # procedure in A210696
end proc:
for d from 0 to 12 do
for n from 0 to d do
printf("%d,",A262586(n,d-n)) ;
end do:
end do: # R. J. Mathar, Oct 21 2015
-
(* See LINKS section. *)
-
\\ See Links in A169808 for PARI program file.
{ for(n=0, 7, for(k=0, 7, print1(OrientedTriangs(n,k), ", ")); print) } \\ Andrew Howroyd, Nov 23 2024
A378336
Triangle read by rows: T(n,k) is the number of n node connected sensed 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, 5, 5, 6, 5, 0, 0, 2, 8, 13, 20, 21, 26, 24, 0, 0, 0, 10, 28, 55, 79, 104, 119, 147, 133, 0, 0, 0, 7, 45, 126, 230, 360, 491, 625, 735, 892, 846, 0, 0, 0, 0, 44, 227, 561, 1066, 1682, 2430, 3241, 4074, 4830, 5876, 5661
Offset: 3
Triangle begins:
n\k | 1 2 3 4 5 6 7 8 9 10 11 12 13
----+----------------------------------------------------------
3 | 1;
4 | 0, 1, 1;
5 | 0, 1, 1, 2, 1;
6 | 0, 0, 2, 5, 5, 6, 5;
7 | 0, 0, 2, 8, 13, 20, 21, 26, 24;
8 | 0, 0, 0, 10, 28, 55, 79, 104, 119, 147, 133;
9 | 0, 0, 0, 7, 45, 126, 230, 360, 491, 625, 735, 892, 846;
...
A005505
Number of unrooted triangulations with reflection symmetry of a quadrilateral with n internal nodes.
Original entry on oeis.org
1, 2, 4, 10, 29, 86, 266, 844, 2742, 9032, 30202, 101988, 347914, 1195500, 4138310, 14405848, 50428392, 177321636, 626250990, 2219876580, 7896651847, 28176271634, 100830069380, 361757157484, 1301092926454, 4689840961196, 16940093338162, 61305930699382
Offset: 0
- 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).
- Andrew Howroyd, Table of n, a(n) for n = 0..500
- 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. (Annotated scanned copy)
- C. F. Earl & N. J. A. Sloane, Correspondence, 1980-1981
Column k=1 of the array in
A169809.
Name clarified and terms a(13) and beyond from
Andrew Howroyd, Feb 21 2021
Showing 1-4 of 4 results.
Comments