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.

Previous Showing 21-24 of 24 results.

A079565 Number of unlabeled and connected graphs on n vertices which are either bipartite or co-bipartite.

Original entry on oeis.org

1, 1, 2, 6, 16, 49, 129, 481, 1845, 9506, 57896, 463909, 4769436, 65179170, 1187099045, 29082860878, 960963147303, 42920936851975, 2594399793419459, 212465886865393053, 23596018831885668391, 3557502387712889568013, 728850489548729072323085
Offset: 1

Views

Author

Jim Nastos, Jan 24 2003

Keywords

Comments

G is bipartite iff the vertices can be partitioned into two sets such that all the edges in the graph go from one of these sets to the other. G is cobipartite iff the complement of G is bipartite.
For n >= 5, no graph can be both bipartite and co-bipartite. - Falk Hüffner, Jan 22 2016

Examples

			Let G be a graph with 5 vertices, 4 of which form a path and the 5th adjacent only to the two vertices in the middle of the path. Then G is not bipartite nor cobipartite because there is a triangle in both G and its complement.
		

Crossrefs

Programs

Formula

For n >= 5, a(n) = A079571(n) + A005142(n). - Falk Hüffner, Jan 22 2016

Extensions

More terms using formula by Falk Hüffner, Jan 22 2016
Terms a(21) and beyond from Andrew Howroyd, Sep 05 2018

A236525 Number of simple non-bipartite graphs on n nodes.

Original entry on oeis.org

0, 0, 1, 4, 21, 121, 956, 12043, 273549, 11999689, 1018965561, 165090921457, 50502028840240, 29054155623249635, 31426485969192461828, 64001015704512693244004, 245935864153532444460997784, 1787577725145611678835828915650, 24637809253125004523074706811821299
Offset: 1

Views

Author

Jernej Azarija, Jan 29 2014

Keywords

Examples

			a(3) = 1 since the only non-bipartite graph on 3 vertices is the triangle.
		

Crossrefs

Programs

  • Sage
    def a(n): return len([G for G in graphs(n) if not G.is_bipartite()])

Formula

a(n) = A000088(n) - A033995(n).

Extensions

More terms from Joerg Arndt, Feb 01 2014

A342212 Largest number of maximal bipartite node-induced subgraphs of an n-node graph.

Original entry on oeis.org

1, 1, 3, 6, 10, 15, 21, 38, 64
Offset: 1

Views

Author

Pontus von Brömssen, Mar 05 2021

Keywords

Comments

This sequence is log-superadditive, i.e., a(m+n) >= a(m)*a(n). By Fekete's subadditive lemma, it follows that the limit of a(n)^(1/n) exists and equals the supremum of a(n)^(1/n). - Pontus von Brömssen, Mar 03 2022
Byskov, Madsen, and Skjernaa (2005) construct a 10-node graph with 105 maximal bipartite subgraphs, so a(10) >= 105.

Examples

			All optimal graphs (i.e., graphs having n nodes and a(n) maximal bipartite subgraphs) for 1 <= n <= 9 are listed below. Here, FCB(n_1, ..., n_k) denotes the full cyclic braid graph with cluster sizes n_1, ..., n_k, as defined by Morrison and Scott (2017), i.e., the graph obtained by arranging complete graphs of orders n_1, ..., n_k (in that order) in a cycle, and joining all pairs of nodes in neighboring parts with edges. (The graph in the paper by Byskov, Madsen, and Skjernaa, which shows that a(10) >= 105, is FCB(2, 2, 2, 2, 2).)
        n = 1: the 1-node graph;
        n = 2: the complete graph and the empty graph;
  3 <= n <= 6: the complete graph;
        n = 7: FCB(1, 1, 2, 1, 2) (the Moser spindle) and the complete graph;
        n = 8: FCB(1, 2, 1, 2, 2) and the 4-antiprism graph;
        n = 9: FCB(1, 2, 2, 1, 3).
		

Crossrefs

For a list of related sequences, see cross-references in A342211.

Formula

a(m+n) >= a(m)*a(n).
a(n) <= n*12^(n/4). (Byskov, Madsen, and Skjernaa (2005))
1.5926... = 105^(1/10) <= lim_{n->oo} a(n)^(1/n) <= 12^(1/4) = 1.8612... . (Byskov, Madsen, and Skjernaa (2005))

A287512 Number of simple perfect non-bipartite graphs on n vertices.

Original entry on oeis.org

0, 0, 1, 4, 20, 113, 818, 8584, 135637, 3263785, 115779695, 5855248060
Offset: 1

Views

Author

Eric W. Weisstein, May 26 2017

Keywords

Crossrefs

Formula

a(n) = A052431(n) - A033995(n), since all bipartite graphs are perfect. - Falk Hüffner, Aug 10 2017

Extensions

a(11)-a(12) from formula by Falk Hüffner, Aug 10 2017
Previous Showing 21-24 of 24 results.