This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A082936 #33 Mar 20 2019 19:12:45 %S A082936 1,1,3,10,43,201,1038,5538,30667,173593,1001603,5864750,34769374, %T A082936 208267320,1258579654,7663720710,46976034379,289628805623, %U A082936 1794932468571,11175157356522,69864075597643,438403736549145,2760351032959050,17433869214973754,110420300879752990 %N A082936 a(n) = (1/(3*n))*Sum_{d|n, d even} phi(2*n/d)*binomial(3d/2,d). %C A082936 a(n) = number of necklaces of n white beads and 2n black beads. - _David Callan_, Mar 28 2004 %H A082936 Alois P. Heinz, <a href="/A082936/b082936.txt">Table of n, a(n) for n = 0..1000</a> %H A082936 M. Bousquet and C. Lamathe, <a href="http://dx.doi.org/10.1016/j.disc.2004.11.015">Enumeration of solid trees according to edge number and edge degree distribution</a>, Discr. Math., 298 (2005), 115-141. %H A082936 M. Isachenkov, I. Kirsch, V. Schomerus, <a href="http://arxiv.org/abs/1403.6857">Chiral Primaries in Strange Metals</a>, arXiv preprint arXiv:1403.6857 [hep-th], 2014. %F A082936 From _Joerg Arndt_, Oct 21 2012: (Start) %F A082936 a(n) = sum( d divides n, phi(n/d) * C(3*d,d) ) / (3*n) for n>=1, a(0)=1. %F A082936 a(n) = sum( d divides n, phi(n/d) * C(3*d-1,d) ) / (2*n) for n>=1, a(0)=1. %F A082936 a(n) = A047996(3*n,n). %F A082936 (End) %F A082936 a(n) ~ 3^(3*n) / (2^(2*n+1) * sqrt(3*Pi) * n^(3/2)). - _Vaclav Kotesovec_, Aug 22 2015 %p A082936 with(numtheory): f := proc(n) local t1,d; t1 := 0; for d from 1 to n do if n mod d = 0 then if d mod 2 = 0 then t1 := t1+phi(n/d)*binomial(3*d/2,d) fi; fi; od; 2*t1/(3*n); end; # use with n even %t A082936 a[n_] := DivisorSum[n, EulerPhi[n/#]*Binomial[3#, #]&]/(3n); a[0] = 1; Array[a, 30, 0] (* _Jean-François Alcover_, Dec 02 2015 *) %o A082936 (PARI) %o A082936 C(n, k)=binomial(n,k); %o A082936 a(n) = if(n<=0, n==0, sumdiv(n, d, eulerphi(n/d) * C(3*d,d)) / (3*n) ); %o A082936 /* or, second formula: */ %o A082936 /* a(n) = if(n<=0, n==0, sumdiv(n, d, eulerphi(n/d) * C(3*d-1,d)) / (2*n) ); */ %o A082936 /* _Joerg Arndt_, Oct 21 2012 */ %Y A082936 Cf. A003239. %Y A082936 Column k=2 of A261494. %K A082936 nonn %O A082936 0,3 %A A082936 _N. J. A. Sloane_, May 26 2003 %E A082936 a(0)=1 prepended by _Joerg Arndt_, Oct 21 2012