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!)
A054364 Number of unlabeled asymmetric 5-ary cacti having n polygons. 4
1, 1, 0, 10, 60, 505, 3876, 33125, 290700, 2661100, 25049020, 241724375, 2379812100, 23833198135, 242172147380, 2491817140380, 25921361665100, 272256630756260, 2884054853862540, 30784716141936520, 330853931834416520, 3577823885432126890, 38907658110093347780 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
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} mu(n/d)*binomial(5*d, d)) - 4*binomial(5*n, n)/(4*n+1) for n > 0. - Andrew Howroyd, May 02 2018
MATHEMATICA
a[0] = 1;
a[n_] := DivisorSum[n, MoebiusMu[n/#] Binomial[5#, #]&]/n - 4 Binomial[5n, n]/(4n+1);
Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Jul 01 2018, after Andrew Howroyd *)
PROG
(PARI) a(n) = if(n==0, 1, sumdiv(n, d, moebius(n/d)*binomial(5*d, d))/n - 4*binomial(5*n, n)/(4*n+1)) \\ Andrew Howroyd, May 02 2018
CROSSREFS
Column k=5 of A303913.
Sequence in context: A155633 A368525 A002493 * A004309 A281863 A219368
KEYWORD
nonn
AUTHOR
EXTENSIONS
Terms a(13) and beyond from Andrew Howroyd, May 02 2018
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 May 1 17:02 EDT 2024. Contains 372175 sequences. (Running on oeis4.)