The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A045629 Number of 2n-bead black-white complementable necklaces with n black beads. 5
1, 1, 2, 3, 7, 15, 44, 128, 415, 1367, 4654, 16080, 56450, 200170, 716728, 2585850, 9393119, 34319667, 126047906, 465076160, 1723097066, 6407856892, 23910271224, 89493903438, 335912741682, 1264106399934, 4768448177636, 18027218147818 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (1/2n) * Sum_{d|n} (phi(n/d)*C(2d-1, d-1) + phi(2n/d)*2^(d-1)). - Christian G. Bower
a(n) ~ 4^(n-1) / (sqrt(Pi) * n^(3/2)). - Vaclav Kotesovec, Oct 08 2017
MATHEMATICA
a[n_] := If[n == 0, 1, (1/(2*n))*DivisorSum[n, EulerPhi[n/#1]*Binomial[2*#1 - 1, #1 - 1] + EulerPhi[2*(n/#1)]*2^(#1 - 1)&]];
Table[a[n], {n, 0, 27}] (* Jean-François Alcover, Oct 08 2017, translated from PARI *)
PROG
(PARI) a(n) = if(n==0, 1, (1/(2*n)) * sumdiv(n, d, eulerphi(n/d)*binomial(2*d-1, d-1) + eulerphi(2*n/d)*2^(d-1))); \\ Andrew Howroyd, Sep 27 2017
CROSSREFS
Cf. A006840.
Sequence in context: A368564 A213385 A161746 * A034731 A216435 A110888
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 June 5 21:38 EDT 2024. Contains 373110 sequences. (Running on oeis4.)