Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A052393
Number of unlabeled ternary cacti having n triangles.
4
1, 1, 3, 6, 19, 57, 258, 1110, 5475, 27429, 143379, 764970, 4173906, 23140816, 130205922, 741650802, 4270593219, 24825326199, 145535320383, 859627488966, 5112006997539, 30586307211945, 184023410798910, 1112800162657902, 6760426635625170
OFFSET
0,3
LINKS
Miklos Bona, Michel Bousquet, Gilbert Labelle, and Pierre Leroux, Enumeration of m-ary cacti, Advances in Applied Mathematics, 24 (2000), 22-56.
FORMULA
a(n) = (1/n)*(Sum_{d|n} phi(n/d)*binomial(3*d, d)) - 2*binomial(3*n, n)/(2*n+1) for n > 0. - Andrew Howroyd, May 02 2018
a(n) ~ 3^(3*n + 1/2) / (sqrt(Pi) * 2^(2*n + 2) * n^(5/2)). - Vaclav Kotesovec, Jul 17 2017
MATHEMATICA
a[n_] := If[n == 0, 1, (Binomial[3*n, n]/(2*n+1) + DivisorSum[n, Binomial[ 3*#, #]*EulerPhi[n/#]*Boole[# < n]&])/n]; Table[a[n], {n, 0, 24}] (* Jean-François Alcover, Jul 17 2017 *)
PROG
(PARI) a(n) = if(n==0, 1, sumdiv(n, d, eulerphi(n/d)*binomial(3*d, d))/n - 2*binomial(3*n, n)/(2*n+1)) \\ Andrew Howroyd, May 02 2018
CROSSREFS
Column k=3 of A303912.
Sequence in context: A248603 A332344 A345244 * A024607 A186022 A058818
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Jean-François Alcover, Jul 17 2017
STATUS
approved