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!)
A295637 Maximum k such that there are k nonisomorphic n-vertex trees with the same degree sequence. 1
1, 1, 1, 1, 1, 1, 2, 3, 5, 9, 17, 33, 73, 174, 364, 759, 1859, 4177, 8715, 21053, 49119, 113956, 269059, 711124, 1750732 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
EXAMPLE
There are 2 nonisomorphic trees with degree sequence [1, 1, 1, 2, 2, 3]. It is impossible to improve on this, so a(6) = 2. [Stern, p. 39]
PROG
(Sage) # from Max Alekseyev, Jul 22 2024
from sage.graphs.trees import TreeIterator
from collections import Counter
a295637 = lambda n: max( Counter(tuple(sorted(T.degree())) for T in TreeIterator(n)).values() )
CROSSREFS
Sequence in context: A000051 A094373 A213705 * A061902 A166286 A179807
KEYWORD
nonn,more
AUTHOR
Eric M. Schmidt, Nov 25 2017
EXTENSIONS
a(19)-a(24) from Max Alekseyev, Jul 22 2024
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 August 9 02:18 EDT 2024. Contains 375024 sequences. (Running on oeis4.)