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.

A003094 Number of unlabeled connected planar simple graphs with n nodes.

Original entry on oeis.org

1, 1, 1, 2, 6, 20, 99, 646, 5974, 71885, 1052805, 17449299, 313372298, 5942258308
Offset: 0

Views

Author

Keywords

Comments

Inverse Euler transform of A005470. - Christian G. Bower, May 16 2003

Examples

			a(3) = 2 since the path o-o-o and the triangle are the two connected planar simple graphs on three nodes.
		

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • R. J. Wilson, Introduction to Graph Theory, Academic Press, NY, 1972, p. 162.

Crossrefs

Row sums of A049334.
The labeled version is A096332.

Programs

  • Mathematica
    a[n_Integer?NonNegative] := a[n] = Module[{m, s, g}, s = Subsets[Range[n], {2}]; m = Length[s]; g = Graph[Range[n], UndirectedEdge @@@ #] & /@ (Pick[s, #, 1] & /@ (IntegerDigits[#, 2, m] & /@ Range[0, 2^m - 1])); Length[DeleteDuplicates[Select[Select[g, ConnectedGraphQ], PlanarGraphQ], IsomorphicGraphQ]]]; Table[a[n], {n, 0, 6}] (* Robert P. P. McKone, Oct 14 2023 *)
  • nauty
    geng -c $n | planarg -q | countg -q # Georg Grasegger, Jul 06 2023

Extensions

More terms from Brendan McKay
a(12) added by Brendan McKay, Dec 06 2014
a(13) added by Georg Grasegger, Jul 06 2023