login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A275334 Number of simple labeled graphs on n vertices that have at least one vertex of odd degree and at least one vertex of even degree. 1
0, 0, 6, 48, 960, 30720, 2064384, 264241152, 68451041280, 35046933135360, 35993612646875136, 73714918700800278528, 302157667927362455470080, 2475275615660953235210895360, 40562343327224770087344704323584 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = 2^binomial(n,2) - 2*2^binomial(n-1,2) if n is even.
a(n) = 2^binomial(n,2) - 2^binomial(n-1,2) if n is odd.
EXAMPLE
a(4)=48 because there are 64 simple labeled graphs on 4 vertices but the graph with no edges, the 3 labelings of the 4-cycle graph, the 4 labelings of the 3 cycle with an isolated node, and the complements of each of these graphs are not counted.
MAPLE
A275334 := proc(n)
if type(n, 'even') then
2^binomial(n, 2)-2*2^binomial(n-1, 2) ;
else
2^binomial(n, 2)-2^binomial(n-1, 2) ;
end if;
end proc:
seq(A275334(n), n=1..30) ; # R. J. Mathar, Jul 15 2017
MATHEMATICA
Table[If[EvenQ[n], 2^Binomial[n, 2] - 2 2^Binomial[n - 1, 2], 2^Binomial[n, 2] - 2^Binomial[n - 1, 2]], {n, 1, 15}]
CROSSREFS
Cf. A122743.
Sequence in context: A108092 A052744 A267620 * A192769 A324461 A084259
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Jul 23 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)