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!)
A320071 Number of length n primitive (=aperiodic or period n) 6-ary words which are earlier in lexicographic order than any other word derived by cyclic shifts of the alphabet. 4
1, 5, 35, 210, 1295, 7735, 46655, 279720, 1679580, 10076395, 60466175, 362789070, 2176782335, 13060647355, 78364162765, 470184704640, 2821109907455, 16926657757380, 101559956668415, 609359729932590, 3656158440016285, 21936950579911675, 131621703842267135 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Dirichlet convolution of mu(n) with 6^(n-1).
LINKS
FORMULA
a(n) = Sum_{d|n} 6^(d-1) * mu(n/d).
a(n) = 6^(n-1) - Sum_{d<n,d|n} a(d).
a(n) = A143325(n,6).
a(n) = A074650(n,6) * n/6.
a(n) = A143324(n,6) / 6.
G.f.: Sum_{k>=1} mu(k)*x^k/(1 - 6*x^k). - Ilya Gutkovskiy, Oct 25 2018
MAPLE
a:= n-> add(`if`(d=n, 6^(n-1), -a(d)), d=numtheory[divisors](n)):
seq(a(n), n=1..25);
MATHEMATICA
nmax = 20; Rest[CoefficientList[Series[Sum[MoebiusMu[k] * x^k / (1 - 6*x^k), {k, 1, nmax}], {x, 0, nmax}], x]] (* Vaclav Kotesovec, Dec 11 2020 *)
CROSSREFS
Column k=6 of A143325.
First differences of A320090.
Sequence in context: A352404 A356391 A221578 * A024062 A180250 A002074
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 05 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 13 19:55 EDT 2024. Contains 372522 sequences. (Running on oeis4.)