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.

A095338 Total number of leaves in the labeled graphs of order n.

Original entry on oeis.org

0, 2, 12, 96, 1280, 30720, 1376256, 117440512, 19327352832, 6184752906240, 3870280929771520, 4755801206503243776, 11510768301994760208384, 55006124792465627449131008, 519934816499859715457632174080, 9735556609752801803494680617287680, 361550014853497117429835520396253724672
Offset: 1

Views

Author

Eric W. Weisstein, Jun 02 2004

Keywords

Comments

A leaf is defined as a vertex of degree (or valence) 1. - Michael Somos, Mar 13 2014

Examples

			G.f. = 2*x^2 + 12*x^3 + 96*x^4 + 1280*x^5 + 30720*x^6 + 1376256*x^7 + ...
		

Crossrefs

Cf. A182166.

Programs

Formula

Conjecture: a(n) = n*(n-1)*2^binomial(n-1,2). - Vladeta Jovovic, Jan 26 2006
a(n) = n*(n-1)*2^binomial(n-1,2) is correct, since counting the total number of leaves in the labeled graphs of order n is equivalent to counting all labeled rooted graphs of order n where the root is a leaf. - Bertran Steinsky, Mar 04 2014
a(n) = 2^(n-1) * A182166(n) for n>=2. - Joerg Arndt, Mar 12 2014