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.

A182290 Maximal number of connected graphs of order n having distinct numbers of spanning trees.

Original entry on oeis.org

1, 1, 2, 5, 16, 65, 386, 3700, 55784, 1134526, 27053464
Offset: 1

Views

Author

Jernej Azarija, Jun 27 2012

Keywords

Comments

a(n) grows asymptotically faster than sqrt(n)*exp(2*Pi*sqrt(n/log(n))/sqrt(3)).

Examples

			a(3) = 2 since any connected graph on 3 vertices can either have 1 spanning tree (any tree) or 3 (triangle).
		

Programs

  • Sage
    # needs the package nauty:
    len( set([g.spanning_trees_count() for g in graphs.nauty_geng('-c ' + str(n)) ]))

Extensions

a(11) from Jernej Azarija, Sep 07 2012