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!)
A060172 Number of orbits of length n under a map whose periodic points are counted by A027306. 6
1, 1, 1, 2, 3, 6, 9, 19, 28, 62, 93, 205, 315, 703, 1091, 2440, 3855, 8616, 13797, 30801, 49929, 111311, 182361, 405751, 671088, 1490409, 2485504, 5509504, 9256395, 20480421, 34636833, 76499520, 130150493, 286960946, 490853403, 1080476338, 1857283155, 4081876927, 7048151355 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The sequence A027306 records the number of points of period n under a map. The number of orbits of length n for this map gives the sequence above.
LINKS
Y. Puri and T. Ward, Arithmetic and growth of periodic orbits, J. Integer Seqs., Vol. 4 (2001), #01.2.1.
Yash Puri and Thomas Ward, A dynamical property unique to the Lucas sequence, Fibonacci Quarterly, Volume 39, Number 5 (November 2001), pp. 398-402.
FORMULA
a(n) = (1/n)* Sum_{ d divides n } mu(d)*A027306(n/d).
EXAMPLE
u(7) = 9 since the map whose periodic points are counted by A027306 has 1 fixed point and 64 points of period 7, hence 9 orbits of length 7.
PROG
(PARI) a027306(n) = (2^n + if(n%2, 0, binomial(n, n/2)))/2;
a(n) = (1/n)*sumdiv(n, d, moebius(d)*a027306(n/d)); \\ Michel Marcus, Sep 11 2017
CROSSREFS
Sequence in context: A018741 A161704 A011962 * A193196 A319755 A309807
KEYWORD
easy,nonn
AUTHOR
Thomas Ward, Mar 13 2001
EXTENSIONS
More terms from Michel Marcus, Sep 11 2017
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 April 25 05:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)