[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A369192 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of labeled simple graphs with n vertices and at most n edges (not necessarily covering).
(history; published version)
#11 by Michael De Vlieger at Mon Jul 15 10:22:35 EDT 2024
STATUS

reviewed

approved

#10 by Joerg Arndt at Mon Jul 15 02:11:26 EDT 2024
STATUS

proposed

reviewed

#9 by Chai Wah Wu at Sun Jul 14 21:18:28 EDT 2024
STATUS

editing

proposed

#8 by Chai Wah Wu at Sun Jul 14 21:17:42 EDT 2024
PROG

(Python)

from math import comb

def A369192(n): return sum(comb(comb(n, 2), k) for k in range(n+1)) # Chai Wah Wu, Jul 14 2024

STATUS

approved

editing

#7 by Michael De Vlieger at Wed Jan 17 23:32:59 EST 2024
STATUS

proposed

approved

#6 by Gus Wiseman at Wed Jan 17 22:25:31 EST 2024
STATUS

editing

proposed

#5 by Gus Wiseman at Wed Jan 17 22:25:19 EST 2024
CROSSREFS

The version for loop-graphs is A066383, covering A369194.

The version for loop-graphs is A369195, covering A369194.

A001187 counts connected graphs, unlabeled A001349.

A054548 counts graphs covering n vertices with k edges, with loops A369199.

A057500 counts connected graphs, n vertices and n edges, unlabeled A001429.

A143543 counts simple labeled graphs by number of connected components.

A322661 counts covering loop-graphs, unlabeled A322700.

A368927 counts choosable loop-graphs, covering A369140.

A369141 counts non-choosable loop-graphs, covering A369142.

Cf. A000169, A000272, `A000666, ~A003465, `A001187, A006649, ~A140638, ~A367916A057500, A143543.

#4 by Gus Wiseman at Wed Jan 17 03:47:51 EST 2024
KEYWORD

nonn,more,changed

#3 by Gus Wiseman at Wed Jan 17 03:07:59 EST 2024
DATA

1, 1, 2, 8, 57, 638, 9949, 198440, 4791323, 135142796, 4346814276, 156713948672, 6251579884084, 273172369790743, 12969420360339724, 664551587744173992, 36543412829258260135, 2146170890448154922648, 134053014635659737513358, 8872652968135849629240560

FORMULA

a(n) = Sum_{k=0..n} binomial(binomial(n,2),k).

#2 by Gus Wiseman at Wed Jan 17 02:49:28 EST 2024
NAME

allocated for Gus WisemanNumber of labeled simple graphs with n vertices and at most n edges (not necessarily covering).

DATA

1, 1, 2, 8, 57, 638, 9949, 198440

OFFSET

0,3

EXAMPLE

The a(0) = 1 through a(3) = 8 graphs:

{} {} {} {}

{{1,2}} {{1,2}}

{{1,3}}

{{2,3}}

{{1,2},{1,3}}

{{1,2},{2,3}}

{{1,3},{2,3}}

{{1,2},{1,3},{2,3}}

MATHEMATICA

Table[Length[Select[Subsets[Subsets[Range[n], {2}]], Length[#]<=n&]], {n, 0, 5}]

CROSSREFS

The case of equality is A116508, covering A367863, also A367862.

The connected case is A129271, unlabeled A005703.

The covering case is A369191, minimal case A053530.

Counting only covered vertices gives A369193.

The version for loop-graphs is A369195, covering A369194.

A001187 counts connected graphs, unlabeled A001349.

A006125 counts graphs, unlabeled A000088.

A006129 counts covering graphs, unlabeled A002494.

A054548 counts graphs covering n vertices with k edges.

A057500 counts connected graphs, n vertices and n edges, unlabeled A001429.

A133686 counts choosable graphs, covering A367869.

A143543 counts simple labeled graphs by number of connected components.

A322661 counts covering loop-graphs, unlabeled A322700.

A367867 counts non-choosable graphs, covering A367868.

A368927 counts choosable loop-graphs, covering A369140.

A369141 counts non-choosable loop-graphs, covering A369142.

Cf. A000169, A000272, `A000666, ~A003465, `A006649, ~A140638, ~A367916.

KEYWORD

allocated

nonn,more

AUTHOR

Gus Wiseman, Jan 17 2024

STATUS

approved

editing