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!)
A253014 a(n) = number of unlabeled rooted trees on n nodes with an odd number of endpoints. 2
1, 1, 1, 2, 4, 10, 24, 58, 142, 359, 919, 2384, 6240, 16487, 43894, 117689, 317400, 860585, 2344280, 6413109, 17610746, 48527584, 134141036, 371862499, 1033586232, 2879818131, 8041864259, 22503532974, 63093269641, 177213423131 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973; see pp. 51-55.
MAPLE
T :=
proc(n)
option remember;
local k, s, A;
if n=0 then return 0 fi;
if n=1 then return u fi;
A := n -> add(subs(u=u^l, T(n/l))/l,
l in divisors(n));
s := (1-u)*A(n-1);
s := s + 1/(n-1)*
add((k+1)*A(k+1)*T(n-1-k), k=0..n-2);
expand(s);
end;
CROSSREFS
Sequence in context: A163271 A178036 A191625 * A110236 A191828 A065161
KEYWORD
nonn
AUTHOR
Marko Riedel, Dec 25 2014
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)