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.

A002218 Number of unlabeled nonseparable (or 2-connected) graphs (or blocks) with n nodes.

Original entry on oeis.org

0, 1, 1, 3, 10, 56, 468, 7123, 194066, 9743542, 900969091, 153620333545, 48432939150704, 28361824488394169, 30995890806033380784, 63501635429109597504951, 244852079292073376010411280, 1783160594069429925952824734641, 24603887051350945867492816663958981
Offset: 1

Views

Author

Keywords

Comments

By definition, a(n) gives the number of graphs with zero cutpoints. - Travis Hoppe, Apr 28 2014
For n > 2, a(n) is also the number of simple biconnected graphs on n nodes. - Eric W. Weisstein, Dec 07 2021
This sequence follows R. W. Robinson's definition of a nonseparable graph which includes K_2 but not the singleton graph K_1. This definition is most suited to graphical enumeration. Other authors sometimes include K_1 as a block or exclude K_2 as not 2-connected. - Andrew Howroyd, Feb 26 2023

References

  • P. Butler and R. W. Robinson, On the computer calculation of the number of nonseparable graphs, pp. 191 - 208 of Proc. Second Caribbean Conference Combinatorics and Computing (Bridgetown, 1977). Ed. R. C. Read and C. C. Cadogan. University of the West Indies, Cave Hill Campus, Barbados, 1977. vii+223 pp.
  • F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 188.
  • R. C. Read and R. J. Wilson, An Atlas of Graphs, Oxford, 1998.
  • R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1978.
  • 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 A325111 (for n>1).
Column sums of A339070.
Row sums of A339071.
The labeled version is A013922.
Cf. A000088 (graphs), A001349 (connected graphs), A006289, A006290, A004115 (rooted case), A010355 (by edges), A241767.

Programs

  • PARI
    \\ See A004115 for graphsSeries and A339645 for combinatorial species functions.
    cycleIndexSeries(n)={my(g=graphsSeries(n), gc=sLog(g), gcr=sPoint(gc)); intformal(x*sSolve( sLog( gcr/(x*sv(1)) ), gcr ), sv(1)) + sSolve(subst(gc, sv(1), 0), gcr)}
    { my(N=12); Vec(OgfSeries(cycleIndexSeries(N)), -N) } \\ Andrew Howroyd, Dec 28 2020

Extensions

More terms from Ronald C. Read. Robinson and Walsh list the first 26 terms.
a(1) changed from 0 to 1 by Eric W. Weisstein, Dec 07 2021
a(1) restored to 0 by Andrew Howroyd, Feb 26 2023

A010355 Number of unlabeled nonseparable (or 2-connected) graphs (or blocks) with n edges.

Original entry on oeis.org

1, 0, 1, 1, 2, 4, 7, 16, 42, 111, 331, 1094, 3829, 14380, 57069, 237188, 1027929, 4622588, 21494274, 103077677, 508743475, 2579847563, 13422868110, 71570635306, 390670937143
Offset: 1

Views

Author

Keywords

Comments

Original name: Single-edge stars with n edges.

Examples

			From _Andrew Howroyd_, Nov 23 2020: (Start)
The a(1) = 1 graph is the single edge (K_2 = P_2).
The a(3) = 1 graph is the triangle (K_3).
The a(4) = 1 graph is the square (C_4).
The a(5) = 2 graphs are the cycle C_5 and a cycle of 4 nodes with one diagonal added.
(End)
		

Crossrefs

Row sums of A339070 and A010356.
Column sums of A339071.

Extensions

a(11)-a(12) from Andrey Zabolotskiy, Oct 03 2017
Name changed by Andrew Howroyd, Nov 23 2020
a(13)-a(18) added using data from Robinson's tables by Andrew Howroyd, Nov 23 2020
a(19)-a(22) from Hugo Pfoertner using program geng from nauty, Dec 04 2020
a(23)-a(24) from Hugo Pfoertner, Dec 07 2020
a(25) from Hugo Pfoertner, Jan 04 2021

A339070 Triangle read by rows: T(n,k) is the number of unlabeled nonseparable (or 2-connected) graphs with n edges and k nodes (n >= 1, 2 <= k <= n + 1).

Original entry on oeis.org

1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 3, 3, 1, 0, 0, 0, 0, 2, 9, 4, 1, 0, 0, 0, 0, 1, 14, 20, 6, 1, 0, 0, 0, 0, 1, 12, 50, 40, 7, 1, 0, 0, 0, 0, 0, 8, 82, 161, 70, 9, 1, 0, 0, 0, 0, 0, 5, 94, 429, 433, 121, 11, 1, 0, 0, 0, 0, 0, 2, 81, 780, 1729, 1034, 189, 13, 1, 0
Offset: 1

Views

Author

Andrew Howroyd, Nov 23 2020

Keywords

Examples

			Triangle T(n,k) begins (n edges >= 1, k vertices >= 2):
  1;
  0, 0;
  0, 1, 0;
  0, 0, 1, 0;
  0, 0, 1, 1,  0;
  0, 0, 1, 2,  1,  0;
  0, 0, 0, 3,  3,  1,   0;
  0, 0, 0, 2,  9,  4,   1,   0;
  0, 0, 0, 1, 14, 20,   6,   1,   0;
  0, 0, 0, 1, 12, 50,  40,   7,   1,  0;
  0, 0, 0, 0,  8, 82, 161,  70,   9,  1, 0;
  0, 0, 0, 0,  5, 94, 429, 433, 121, 11, 1, 0;
  ...
		

Crossrefs

Row sums are A010355.
Column sums are A002218.
Cf. A054923, A123534, A253186, A339071 (transpose), A339160.

Formula

T(n, n) = 1 for n >= 3.
T(n, n-1) = A253186(n-3) for n >= 3.

Extensions

First row and column removed by Andrew Howroyd, Dec 05 2020

A339072 Triangle read by rows: T(n,k) is the number of unlabeled simple 3-connected graphs with n nodes and k edges (n >= 4, ceiling(3*n/2) <= k <= n*(n-1)/2).

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 4, 4, 2, 1, 1, 3, 14, 25, 31, 28, 17, 9, 5, 2, 1, 1, 4, 24, 101, 254, 413, 475, 426, 306, 187, 103, 52, 23, 11, 5, 2, 1, 1, 19, 204, 1068, 3348, 7152, 11199, 13683, 13604, 11374, 8203, 5216, 2963, 1536, 737, 333, 144, 62, 25, 11, 5, 2, 1, 1
Offset: 4

Views

Author

Andrew Howroyd, Nov 24 2020

Keywords

Examples

			Triangle begins:
===========================================================
n/k | 6  7  8   9  10 11  12  13  14  15  16 17 18 19 20 21
----+------------------------------------------------------
  4 | 1;
  5 |       1,  1,  1;
  6 |           2,  3, 4,  4,  2,  1,  1;
  7 |                  3, 14, 25, 31, 28, 17, 9, 5, 2, 1, 1;
  8 |                      4, 24 ...
  ...
		

Crossrefs

Row sums are A006290.
Column sums are A338511.

A339069 Triangle read by rows: T(n,k) is the number of unlabeled simple series-reduced 2-connected graphs with n nodes and k edges (n >= 4, ceiling(3*n/2) <= k <= n*(n-1)/2).

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 5, 4, 2, 1, 1, 4, 17, 30, 34, 29, 17, 9, 5, 2, 1, 1, 5, 33, 133, 307, 464, 505, 438, 310, 188, 103, 52, 23, 11, 5, 2, 1, 1, 25, 277, 1352, 3953, 7939, 11897, 14131, 13827, 11465, 8235, 5226, 2966, 1537, 737, 333, 144, 62, 25, 11, 5, 2, 1, 1
Offset: 4

Views

Author

Andrew Howroyd, Nov 24 2020

Keywords

Examples

			Triangle begins:
===========================================================
n/k | 6  7  8   9  10 11  12  13  14  15  16 17 18 19 20 21
----+------------------------------------------------------
  4 | 1;
  5 |       1,  1,  1;
  6 |           2,  4, 5,  4,  2,  1,  1;
  7 |                  4, 17, 30, 34, 29, 17, 9, 5, 2, 1, 1;
  8 |                      5, 33 ...
  ...
		

Crossrefs

Row sums are A006289.
Column sums are A339068.
Showing 1-5 of 5 results.