login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A006930
Binomial transform of rooted tree numbers.
1
1, 2, 5, 14, 42, 131, 420, 1376, 4589, 15537, 53293, 184881, 647752, 2289215, 8152147, 29226618, 105408688, 382193502, 1392377762, 5094356032, 18711122069, 68965586862, 255006331944, 945662753514, 3516281928159, 13106923073426, 48967229534156, 183326438562982
OFFSET
0,2
FORMULA
a(n) ~ c * d^n / n^(3/2), where d = 1 + A051491 = 3.955765285651994974714..., c = 2.0132071688691451819... . - Vaclav Kotesovec, Aug 25 2014
MAPLE
with(numtheory):
b:= proc(n) option remember; local d, j; `if`(n<=1, n,
(add(add(d*b(d), d=divisors(j))*b(n-j), j=1..n-1))/(n-1))
end:
a:= n-> add(b(k+1)*binomial(n, k), k=0..n):
seq(a(n), n=0..30); # Alois P. Heinz, May 17 2013
MATHEMATICA
b[n_] := b[n] = Module[{d, j}, If[n <= 1, n, Sum[Sum[d*b[d], {d, Divisors[j]}]*b[n-j], {j, 1, n-1}]/(n-1)]]; a[n_] := Sum[b[k+1]*Binomial[n, k], {k, 0, n}]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Oct 07 2014, translated from Maple *)
CROSSREFS
Sequence in context: A196417 A054392 A261588 * A036767 A261894 A287969
KEYWORD
nonn
AUTHOR
STATUS
approved