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.

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