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.

A343869 Number of unlabeled nonseparable (or 2-connected) planar graphs with n edges.

Original entry on oeis.org

1, 0, 1, 1, 2, 4, 7, 16, 41, 108, 320, 1042, 3575, 13064, 49938, 197729, 805991, 3363084, 14302891, 61813285, 270805177, 1200460492, 5376709415, 24302430375, 110745093999, 508380790741
Offset: 1

Views

Author

Andrew Howroyd, May 04 2021

Keywords

Comments

Terms may be computed using the tools geng and planarg in nauty.

Crossrefs

Row sums of A343870.
Column sums of A049336(n > 1).
Cf. A002840 (3-connected), A010355, A021103, A046091, A289471, A291841.

Programs

  • nauty
    # count graphs for the sequence by number of vertices v, sum over v afterwards
    geng -C $v $n:$n | planarg -q | countg -q # Georg Grasegger, Jun 05 2023

Extensions

a(21)-a(26) added by Georg Grasegger, Jun 05 2023

A343873 Triangle read by rows: T(n,k) is the number of unlabeled connected planar graphs with n edges and k nodes (n >= 0, 1 <= k <= n + 1).

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 2, 3, 0, 0, 0, 1, 5, 6, 0, 0, 0, 1, 5, 13, 11, 0, 0, 0, 0, 4, 19, 33, 23, 0, 0, 0, 0, 2, 22, 67, 89, 47, 0, 0, 0, 0, 1, 19, 107, 236, 240, 106, 0, 0, 0, 0, 0, 13, 130, 486, 797, 657, 235, 0, 0, 0, 0, 0, 5, 130, 804, 2075, 2678, 1806, 551
Offset: 0

Views

Author

Andrew Howroyd, May 06 2021

Keywords

Comments

First differs from A054923 in row n=9.
Terms may be computed using the tools geng and planarg in nauty.

Examples

			Triangle begins (n edges >= 0, k vertices >= 1):
  1;
  0, 1;
  0, 0, 1;
  0, 0, 1, 2;
  0, 0, 0, 2, 3;
  0, 0, 0, 1, 5,  6;
  0, 0, 0, 1, 5, 13,  11;
  0, 0, 0, 0, 4, 19,  33,  23;
  0, 0, 0, 0, 2, 22,  67,  89,  47;
  0, 0, 0, 0, 1, 19, 107, 236, 240, 106;
  0, 0, 0, 0, 0, 13, 130, 486, 797, 657, 235;
  ...
		

Crossrefs

Row sums are A046091.
Column sums are A003094.
Main diagonal is A000055.
Subsequent diagonals are A001429, A001435, A001436 (same as for not necessarily planar graphs).
Cf. A049334 (transpose), A054923, A343870.

Programs

  • nauty
    geng -c $k $n:$n | planarg -q | countg -q # Georg Grasegger, Jul 06 2023
Showing 1-2 of 2 results.