|
| |
|
|
A007714
|
|
Number of 5-level rooted trees with n leaves.
|
|
2
| |
|
|
1, 5, 15, 55, 170, 571, 1789, 5727, 17836, 55627, 171169, 524879, 1595896, 4829894, 14527981, 43497312, 129588391, 384430264, 1135607519, 3341662498, 9796626673, 28620419254, 83334382425, 241879403752, 699937499318
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
REFERENCES
| Huberman, B. A. and Hogg, T.; Complexity and adaptation. Evolution, games and learning (Los Alamos, N.M., 1985). Phys. D 22 (1986), no. 1-3, 376-384.
|
|
|
LINKS
| Index entries for sequences related to rooted trees
N. J. A. Sloane, Transforms
P. J. Cameron, Sequences realized by oligomorphic permutation groups, J. Integ. Seqs. Vol. 3 (2000), #00.1.5.
|
|
|
FORMULA
| Euler transform applied 4 times to all-1's sequence.
|
|
|
MAPLE
| with (numtheory): etr:= proc(p) local b; b:=proc(n) option remember; local d, j; if n=0 then 1 else add (add (d*p(d), d=divisors(j)) *b(n-j), j=1..n)/n fi end end: b[0]:= etr(1): for k from 1 to 2 do b[k]:= etr(b[k-1]) od: a:= etr(b[2]): seq (a(n), n=1..25); [From Alois P. Heinz (heinz(AT)hs-heilbronn.de), Sep 08 2008]
|
|
|
MATHEMATICA
| i[ n_, m_ ] := 1 /; m==1 || n==0; i[ n_, m_ ] := (i[ n, m ]=1/n Sum[ i[ k, m ] Plus @@ ((# i[ #, m-1 ])& /@ Divisors[ n-k ]), {k, 0, n-1} ]) /; n>0 && m>1
|
|
|
CROSSREFS
| Sequence in context: A147324 A109245 A002221 * A123011 A006358 A054108
Adjacent sequences: A007711 A007712 A007713 * A007715 A007716 A007717
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| N. J. A. Sloane (njas(AT)research.att.com).
|
|
|
EXTENSIONS
| More terms from Christian G. Bower (bowerc(AT)usa.net), Aug 15 1998.
|
| |
|
|