OFFSET
1,1
REFERENCES
F. Bergeron, G. Labelle and P. Leroux, Combinatorial Species and Tree-Like Structures, Cambridge, 1998, p. 293 (4.1.60).
LINKS
L. Foissy, Algebraic structures on typed decorated rooted trees, arXiv:1811.07572 (2018)
N. J. A. Sloane, Transforms
MAPLE
with(numtheory):
a:= proc(n) option remember; `if`(n<2, n*4, (add(add(d*
a(d), d=divisors(j))*a(n-j), j=1..n-1))/(n-1))
end:
seq(a(n), n=1..25); # Alois P. Heinz, May 16 2014
MATHEMATICA
a[1] = 4; a[n_] := a[n] = Sum[ Sum[ d*a[d], {d, Divisors[j]}]*a[n-j], {j, 1, n-1}]/(n-1); Table[a[n], {n, 1, 25}] (* Jean-François Alcover, Feb 24 2015, after Alois P. Heinz *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Christian G. Bower, Jan 21 2008
STATUS
approved