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-6 of 6 results.

A060165 Number of orbits of length n under the map whose periodic points are counted by A000984.

Original entry on oeis.org

2, 2, 6, 16, 50, 150, 490, 1600, 5400, 18450, 64130, 225264, 800046, 2865226, 10341150, 37566720, 137270954, 504171432, 1860277042, 6892317200, 25631327190, 95640829922, 357975249026, 1343650040256, 5056424257500, 19073789328750, 72108867614796
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A000984 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.
The number of n-cycles in the graph of overlapping m-permutations where n <= m. - Richard Ehrenborg, Dec 10 2013
a(n) is divisible by n (cf. A268619), 6*a(n) is divisible by n^2 (cf. A268592). - Max Alekseyev, Feb 09 2016
Apparently the number of Lyndon words of length n with a 4-letter alphabet (see A027377) where the first letter of the alphabet appears with the same frequency as the second of the alphabet. E.g a(1)=2 counts the words (2), (3), a(2)= 2 counts (01) (23), a(3)=6 counts (021) (031) (012) (013) (223) (233). R. J. Mathar, Nov 04 2021

Examples

			a(5) = 50 because if a map has A000984 as its periodic points, then it would have 2 fixed points and 252 points of period 5, hence 50 orbits of length 5.
		

Crossrefs

Programs

  • Maple
    with(numtheory):
    a:= n-> add(mobius(n/d)*binomial(2*d, d), d=divisors(n))/n:
    seq(a(n), n=1..30); # Alois P. Heinz, Dec 10 2013
  • Mathematica
    a[n_] := (1/n)*Sum[MoebiusMu[d]*Binomial[2*n/d, n/d], {d, Divisors[n]}]; Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Jul 16 2015 *)
  • PARI
    a(n)=sumdiv(n,d,moebius(n/d)*binomial(2*d,d))/n \\ Charles R Greathouse IV, Dec 10 2013
    
  • Python
    from sympy import mobius, binomial, divisors
    def a(n): return sum(mobius(n//d) * binomial(2*d, d) for d in divisors(n))//n
    print([a(n) for n in range(1, 31)])  # Indranil Ghosh, Jul 24 2017

Formula

a(n) = (1/n) * Sum_{d|n} mu(d) A000984(n/d) with mu = A008683.
a(n) = 2*A022553(n).
a(n) = A007727(n)/n. - R. J. Mathar, Jul 24 2017
G.f.: 2 * Sum_{k>=1} mu(k)*log((1 - sqrt(1 - 4*x^k))/(2*x^k))/k. - Ilya Gutkovskiy, May 18 2019
a(n) ~ 4^n / (sqrt(Pi) * n^(3/2)). - Vaclav Kotesovec, Aug 04 2022

A060170 Number of orbits of length n under the map whose periodic points are counted by A005809.

Original entry on oeis.org

3, 6, 27, 120, 600, 3078, 16611, 91872, 520749, 3004200, 17594247, 104304888, 624801957, 3775722342, 22991161500, 140928011136, 868886416866, 5384796881850, 33525472069563, 209592223788000, 1315211209630794, 8281053081282894, 52301607644921259, 331260902534858976, 2103541885645955625, 13389670112374830378
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A005809 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.
a(n) is divisible by n (cf. A268617), 2*a(n) is divisible by n^2 (cf. A268618).

Examples

			a(3) = 27 since a map whose periodic points are counted by A005809 has 3 fixed points and 84 points of period 3, hence 27 orbits of length 3.
		

Crossrefs

Programs

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

Formula

a(n) = (1/n)* Sum_{d|n} A008683(n/d)*A005809(d).

Extensions

Edited by Max Alekseyev, Feb 09 2016

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).

A060164 Number of orbits of length n under the map whose periodic points are counted by A000364.

Original entry on oeis.org

1, 2, 20, 345, 10104, 450450, 28480140, 2423938845, 267208852820, 37037118818700, 6304443126648900, 1292877846962865230, 314390193022547991720, 89447117243116404721950, 29436259549934873636908816, 11094961973721205588579579845, 4748429366816935180127543967840
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A000364 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) = 20 since the conjectured map whose periodic points are counted by A000364 would have 1 fixed point and 61 points of period 3, so it must have 20 orbits of length 3.
		

Crossrefs

Formula

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

A060169 Number of orbits of length n under the automorphism of the 3-torus whose periodic points are counted by A001945.

Original entry on oeis.org

1, 0, 0, 1, 0, 1, 1, 0, 2, 1, 2, 2, 2, 4, 4, 5, 8, 6, 12, 13, 16, 23, 26, 35, 46, 54, 76, 89, 120, 154, 192, 255, 322, 411, 544, 679, 898, 1145, 1476, 1925, 2466, 3201, 4156, 5338, 6978, 8985
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A001945 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.

Examples

			u(17) = 8 since the map whose periodic points are counted by A001945 has 1 fixed point and 137 points of period 17, hence 8 orbits of length 7.
		

Crossrefs

Formula

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

A060173 Number of orbits of length n under a map whose periodic points are counted by A056045.

Original entry on oeis.org

1, 1, 1, 2, 1, 6, 1, 12, 10, 30, 1, 139, 1, 252, 231, 920, 1, 3780, 1, 10250, 5601, 32076, 1, 149390, 2126, 400036, 173692, 1475642, 1, 6196651, 1, 19113136, 5864915, 68635494, 201405, 289525026, 1, 930138540, 208267554, 3469290971, 1, 14075005210, 1, 47994721225, 7683440470
Offset: 1

Views

Author

Thomas Ward, Mar 13 2001

Keywords

Comments

The sequence A056045 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.

Examples

			a(7) = 1 since the map whose periodic points are counted by A056045 has 1 fixed point and 8 points of period 7, hence 1 orbits of length 7.
		

Crossrefs

Programs

  • PARI
    a056045(n) = sumdiv(n, d, binomial(n, d));
    a(n) = (1/n)*sumdiv(n, d, moebius(d)*a056045(n/d)); \\ Michel Marcus, Sep 11 2017

Formula

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

Extensions

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