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.

Showing 1-1 of 1 results.

A060166 Number of orbits of length n under the map whose periodic points are counted by A001641.

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 7, 10, 17, 26, 44, 68, 115, 184, 306, 500, 835, 1374, 2301, 3822, 6409, 10718, 18028, 30280, 51077, 86130, 145641, 246370, 417600, 708246, 1203069, 2045010, 3480408, 5927660, 10105819, 17241140, 29439580, 50302162, 86012630, 147166248, 251963055, 431633348
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A001641 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

			a(7) = 7 since a map whose periodic points are counted by A001641 would have 1 fixed point and 50 points of period 7, hence 7 orbits of length 7.
		

Crossrefs

Programs

  • PARI
    a001641(n)=if(n<0, 0, polcoeff(x*(1+2*x+4*x^3)/(1-x-x^2-x^4)+x*O(x^n), n))
    a(n) = sumdiv(n, d, moebius(d)*a001641(n/d))/n; \\ Michel Marcus, Sep 10 2017

Formula

a(n) = (1/n)* Sum_{ d divides n } mu(d)*A001641(n/d).

Extensions

More terms from Michel Marcus, Sep 10 2017
Showing 1-1 of 1 results.