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!)
A290354 a(n) is the n-th term of the n-th Euler transform of the sequence with g.f. 1+x. 5
1, 1, 2, 6, 30, 170, 1337, 12166, 133476, 1676364, 23970089, 383172262, 6783362586, 131697494825, 2783238819896, 63605879539200, 1563127601683456, 41107799958703376, 1151957989511106438, 34268629198432285436, 1078577860182473404134, 35809701458658690462644 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) is also the number of unlabeled rooted trees with exactly n leaves, all in level n. a(3) = 6:
: o o o o o o
: | | | / \ / \ /|\
: o o o o o o o o o o
: | / \ /|\ | | ( ) | | | |
: o o o o o o o o o o o o o o
: /|\ ( ) | | | | ( ) | | | | | | |
: o o o o o o o o o o o o o o o o o o
LINKS
B. A. Huberman and T. Hogg, Complexity and adaptation, Evolution, games and learning (Los Alamos, N.M., 1985). Phys. D 22 (1986), no. 1-3, 376-384.
FORMULA
a(n) = A290353(n,n).
Conjecture: a(n) ~ c * 2^n * n^(n-4/3) / Pi^n, where c = 4.4923... - Vaclav Kotesovec, Aug 14 2017
MAPLE
with(numtheory):
b:= proc(n, k) option remember; `if`(n<2, 1, `if`(k=0, 0, add(
add(b(d, k-1)*d, d=divisors(j))*b(n-j, k), j=1..n)/n))
end:
a:= n-> b(n$2):
seq(a(n), n=0..25);
MATHEMATICA
b[n_, k_]:=b[n, k]=If[n<2, 1, If[k==0, 0, Sum[Sum[b[d, k - 1]*d, {d, Divisors[j]}] b[n - j, k], {j, n}]/n]]; Table[b[n, n], {n, 0, 30}] (* Indranil Ghosh, Jul 30 2017, after Maple code *)
CROSSREFS
Main diagonal of A290353.
Sequence in context: A366266 A196497 A127115 * A293906 A180893 A180894
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 28 2017
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 September 6 16:56 EDT 2024. Contains 375715 sequences. (Running on oeis4.)