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!)
A308522 Maximum number of simple graphs with no isolated vertices on n nodes with identical degree sequences. 0
1, 1, 1, 2, 5, 20, 184, 3020, 65500 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
LINKS
Peter Adams, Roger B. Eggleton, and James A. MacDougall, Taxonomy of Graphs of Order 10, Congressus Numerantium, 180 (2006), 65.
Peter Adams, Roger B. Eggleton, and James A. MacDougall, Taxonomy of Graphs of Order 10, Web page.
PROG
(Sage)
def max_graphs(n):
if n > 1:
count = defaultdict(int)
sequences = [tuple(graph.degree_sequence()) for graph in graphs(n) if graph and not 0 in graph.degree_sequence()]
for seq in sequences:
count[seq] += 1
max_cnt = max(count.values())
else:
return None
return max_cnt
CROSSREFS
Sequence in context: A005331 A261005 A158872 * A216462 A006893 A003163
KEYWORD
nonn,hard,more
AUTHOR
Sharat Chandra, Jun 04 2019
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)