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!)
A045628 Number of 2n-bead black-white reversible necklaces with n black beads and fundamental period 2n. 2
1, 1, 1, 2, 6, 15, 46, 132, 432, 1384, 4735, 16158, 56766, 200473, 718012, 2587000, 9398080, 34324173, 126067124, 465093570, 1723171550, 6407924165, 23910560070, 89494164972, 335913861648, 1264107416450, 4768452532025 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
Moebius transform of A005648. - Christian G. Bower
a(n) = 1/(4*n) * Sum_{d|n} mu(n/d) * (2*n*binomial(2*floor(d/2), floor(d/2)) + binomial(2*d, d)) for n > 0. - Andrew Howroyd, Sep 28 2017
MATHEMATICA
a[n_] := If[n == 0, 1, Sum[MoebiusMu[n/d] (2n Binomial[ 2 Quotient[d, 2], Quotient[d, 2]] + Binomial[2d, d]), {d, Divisors[n]}]/(4n)];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Aug 28 2019, from PARI *)
PROG
(PARI) a(n) = if(n<1, n==0, sumdiv(n, d, moebius(n/d)*(2*n*binomial(2*(d\2), d\2) + binomial(2*d, d)))/(4*n)); \\ Andrew Howroyd, Sep 28 2017
CROSSREFS
Cf. A005648.
Sequence in context: A293114 A322188 A317976 * A186738 A127383 A237262
KEYWORD
nonn
AUTHOR
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 April 20 11:40 EDT 2024. Contains 371838 sequences. (Running on oeis4.)