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.

A060171 Number of orbits of length n under a map whose periodic points seem to be counted by A006953.

Original entry on oeis.org

12, 54, 80, 30, 24, 5400, 0, 990, 1568, 636, 24, 2720, 0, 240, 5704, 510, 0, 3835776, 0, 26724, 3600, 108, 24, 89760, 0, 240, 1064, 120, 24, 113569300, 0, 510, 11752, 0, 264, 278281640
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A006953 seems to record the number of points of period n under a map. The number of orbits of length n for this map gives the sequence above.

Examples

			u(3) = 80 since a map whose periodic points are counted by A006953 has 12 fixed points and 252 points of period 3, hence 80 orbits of length 3.
		

Crossrefs

Programs

  • PARI
    a(n) = sumdiv(n, d, moebius(d)*denominator(bernfrac(2*n/d)/(2*n/d)))/n; \\ Michel Marcus, Sep 10 2017

Formula

a(n) = (1/n)* Sum_{d|n} mu(d)*A006953(n/d).