cp's OEIS Frontend

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.

A320074 Number of length n primitive (=aperiodic or period n) 9-ary words which are earlier in lexicographic order than any other word derived by cyclic shifts of the alphabet.

Original entry on oeis.org

1, 8, 80, 720, 6560, 58960, 531440, 4782240, 43046640, 387413920, 3486784400, 31380999840, 282429536480, 2541865296880, 22876792448320, 205891127311680, 1853020188851840, 16677181656560880, 150094635296999120, 1350851717285570880, 12157665459056397280
Offset: 1

Views

Author

Alois P. Heinz, Oct 05 2018

Keywords

Comments

Dirichlet convolution of mu(n) with 9^(n-1).

Crossrefs

Column k=9 of A143325.
First differences of A320093.

Programs

  • Maple
    a:= n-> add(`if`(d=n, 9^(n-1), -a(d)), d=numtheory[divisors](n)):
    seq(a(n), n=1..25);

Formula

a(n) = Sum_{d|n} 9^(d-1) * mu(n/d).
a(n) = 9^(n-1) - Sum_{d
a(n) = A143325(n,9).
a(n) = A074650(n,9) * n/9.
a(n) = A143324(n,9) / 9.
G.f.: Sum_{k>=1} mu(k)*x^k/(1 - 9*x^k). - Ilya Gutkovskiy, Oct 25 2018