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!)
A027376 Number of ternary irreducible monic polynomials of degree n; dimensions of free Lie algebras. 37

%I #91 Sep 27 2023 16:39:56

%S 1,3,3,8,18,48,116,312,810,2184,5880,16104,44220,122640,341484,956576,

%T 2690010,7596480,21522228,61171656,174336264,498111952,1426403748,

%U 4093181688,11767874940,33891544368,97764009000,282429535752,817028131140,2366564736720,6863037256208,19924948267224,57906879556410

%N Number of ternary irreducible monic polynomials of degree n; dimensions of free Lie algebras.

%C Number of Lyndon words of length n on {1,2,3}. A Lyndon word is primitive (not a power of another word) and is earlier in lexicographic order than any of its cyclic shifts. - _John W. Layman_, Jan 24 2006

%C Exponents in an expansion of the Hardy-Littlewood constant Product(1 - (3*p - 1)/(p - 1)^3, p prime >= 5), whose decimal expansion is in A065418: the constant equals Product_{n >= 2} (zeta(n)*(1 - 2^(-n))*(1 - 3^(-n)))^(-a(n)). - _Michael Somos_, Apr 05 2003

%C Number of aperiodic necklaces with n beads of 3 colors. - _Herbert Kociemba_, Nov 25 2016

%C Number of irreducible harmonic polylogarithms, see page 299 of Gehrmann and Remiddi reference and table 1 of Maître article. - _F. Chapoton_, Aug 09 2021

%C For n>=2, a(n) is the number of Hesse loops of length 2*n, see Theorem 22 of Dutta, Halbeisen, Hungerbühler link. - _Sayan Dutta_, Sep 22 2023

%D E. R. Berlekamp, Algebraic Coding Theory, McGraw-Hill, NY, 1968, p. 84.

%D M. Lothaire, Combinatorics on Words. Addison-Wesley, Reading, MA, 1983, p. 79.

%H Seiichi Manyama, <a href="/A027376/b027376.txt">Table of n, a(n) for n = 0..2102</a> (terms 0..200 from T. D. Noe)

%H Kam Cheong Au, <a href="https://arxiv.org/abs/2007.03957">Evaluation of one-dimensional polylogarithmic integral, with applications to infinite series</a>, arXiv:2007.03957 [math.NT], 2020. See 4th line of Table 1 (p. 6).

%H Sayan Dutta, Lorenz Halbeisen, and Norbert Hungerbühler, <a href="https://arxiv.org/abs/2309.05048">Properties of Hesse derivatives of cubic curves</a>, arXiv:2309.05048 [math.AG], 2023.

%H T. Gehrmann and E. Remiddi, <a href="https://dx.doi.org/10.1016/S0010-4655(02)00139-X">Numerical evaluation of harmonic polylogarithms</a>. Comput. Phys. Comm. 141 (2001), no. 2, 296-312.

%H E. N. Gilbert and J. Riordan, <a href="http://projecteuclid.org/euclid.ijm/1255631587">Symmetry types of periodic sequences</a>, Illinois J. Math., 5 (1961), 657-665.

%H Veronika Irvine, <a href="http://hdl.handle.net/1828/7495">Lace Tessellations: A mathematical model for bobbin lace and an exhaustive combinatorial search for patterns</a>, PhD Dissertation, University of Victoria, 2016. See Table A.2.

%H Y. Puri and T. Ward, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL4/WARD/short.html">Arithmetic and growth of periodic orbits</a>, J. Integer Seqs., Vol. 4 (2001), #01.2.1.

%H D. Maître, <a href="https://doi.org/10.1016/j.cpc.2005.10.008">HPL, a Mathematica implementation of the harmonic polylogarithms</a>, Computer Physics Communications, Volume 174, Issue 3, 1 February 2006, Pages 222-240.

%H G. Niklasch, <a href="/A001692/a001692.html">Some number theoretical constants: 1000-digit values</a> [Cached copy]

%H G. Viennot, <a href="http://dx.doi.org/10.1007/BFb0067950">Algèbres de Lie Libres et Monoïdes Libres</a>, Lecture Notes in Mathematics 691, Springer Verlag, 1978.

%H <a href="/index/Lu#Lyndon">Index entries for sequences related to Lyndon words</a>

%F a(n) = (1/n)*Sum_{d|n} mu(d)*3^(n/d).

%F (1 - 3*x) = Product_{n>0} (1 - x^n)^a(n).

%F G.f.: k = 3, 1 - Sum_{i >= 1} mu(i)*log(1 - k*x^i)/i. - _Herbert Kociemba_, Nov 25 2016

%F a(n) ~ 3^n / n. - _Vaclav Kotesovec_, Jul 01 2018

%F a(n) = 2*A046211(n) + A046209(n). - _R. J. Mathar_, Oct 21 2021

%e For n = 2 the a(2)=3 polynomials are x^2+1, x^2+x+2, x^2+2*x+2. - _Robert Israel_, Dec 16 2015

%p with(numtheory): A027376 := n -> `if`(n = 0, 1,

%p add(mobius(d)*3^(n/d), d = divisors(n))/n):

%p seq(A027376(n), n = 0..32);

%t a[0]=1; a[n_] := Module[{ds=Divisors[n], i}, Sum[MoebiusMu[ds[[i]]]3^(n/ds[[i]]), {i, 1, Length[ds]}]/n]

%t a[0]=1; a[n_] := DivisorSum[n, MoebiusMu[n/#]*3^#&]/n; Table[a[n], {n, 0, 40}] (* _Jean-François Alcover_, Dec 01 2015 *)

%t mx=40;f[x_,k_]:=1-Sum[MoebiusMu[i] Log[1-k*x^i]/i,{i,1,mx}];CoefficientList[Series[f[x,3],{x,0,mx}],x] (* _Herbert Kociemba_, Nov 25 2016 *)

%o (PARI) a(n)=if(n<1,n==0,sumdiv(n,d,moebius(n/d)*3^d)/n)

%Y Column 3 of A074650.

%Y Cf. A000031, A001037, A001693, A001867, A027375, A027377, A054718, A102660.

%K nonn,nice,easy

%O 0,2

%A _N. J. A. Sloane_

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 23 05:37 EDT 2024. Contains 371906 sequences. (Running on oeis4.)