OFFSET
0,3
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
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(7*d, d)) - 6*binomial(7*n, n)/(6*n+1) for n > 0. - Andrew Howroyd, May 02 2018
a(n) ~ 7^(7*n + 1/2) / (2 * sqrt(3*Pi) * n^(5/2) * 6^(6*n + 1)). - Vaclav Kotesovec, Jul 17 2017
MATHEMATICA
a[n_] := If[n == 0, 1, (Binomial[7*n, n]/(6 n + 1) + DivisorSum[n, Binomial[7*#, #]*EulerPhi[n/#]*Boole[# < n] & ])/n]; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Jul 17 2017 *)
PROG
(PARI) a(n) = if(n==0, 1, sumdiv(n, d, eulerphi(n/d)*binomial(7*d, d))/n - 6*binomial(7*n, n)/(6*n+1)) \\ Andrew Howroyd, May 02 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Jean-François Alcover, Jul 17 2017
STATUS
approved