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

A338511 Number of unlabeled 3-connected graphs with n edges.

Original entry on oeis.org

1, 0, 1, 3, 4, 7, 22, 51, 152, 501, 1739, 6548, 26260, 110292, 483545, 2198726, 10327116, 49965520, 248481062, 1267987437, 6630660484, 35492360163, 194283212876
Offset: 6

Views

Author

Andrew Howroyd, Oct 31 2020

Keywords

Comments

The smallest 3-connected graph is the complete graph on 4 vertices which has 6 edges.

Crossrefs

Column sums of A339072.

Programs

  • PARI
    \\ It is assumed that the 3cc.gp file (from the linked zip archive) has been read before, i.e., \r [path]3cc.gp
    for(k=1,#ThreeConnectedData,print1(#ThreeConnectedData[k],", "));
    \\ printing of the graphs for n <= 9
    print(ThreeConnectedData[6..9]) \\ Hugo Pfoertner, Dec 11 2020

Extensions

a(17)-a(25) from Hugo Pfoertner using data from Robinson's tables, Nov 20 2020
a(26)-a(28) from Andrew Howroyd using data from Robinson's tables, Nov 24 2020

A343871 Number of labeled 3-connected planar graphs with n edges.

Original entry on oeis.org

1, 0, 15, 70, 432, 4320, 30855, 294840, 2883240, 28175952, 310690800, 3458941920, 40459730640, 499638948480, 6324655705200, 83653192972800, 1145266802114400, 16145338385736000, 235579813593453000, 3535776409508703360, 54571687068401395200, 866268656574795936000
Offset: 6

Views

Author

Andrew Howroyd, May 05 2021

Keywords

Crossrefs

Cf. A000287, A002840 (unlabeled case), A096330, A290326, A291841, A338414.

Programs

  • PARI
    Q(n,k) = { \\ c-nets with n-edges, k-vertices (see A290326)
      if (k < 2+(n+2)\3 || k > 2*n\3, return(0));
      sum(i=2, k, sum(j=k, n, (-1)^((i+j+1-k)%2)*binomial(i+j-k,i)*i*(i-1)/2*
      (binomial(2*n-2*k+2,k-i)*binomial(2*k-2, n-j) -
      4*binomial(2*n-2*k+1, k-i-1)*binomial(2*k-3, n-j-1))));
    };
    a(n)={sum(k=2+(n+2)\3, 2*n\3, k!*Q(n,k))/(4*n)} \\ Andrew Howroyd, May 05 2021

Formula

a(n) = Sum_{k=2+floor((n+2)/3)..floor(2*n/3)} k!*A290326(n-k+1, k-1)/(4*n).
Showing 1-2 of 2 results.