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

A163911 Maximum cycle size in range [A000302(n-1)..A024036(n)] of permutation A163355/A163356.

Original entry on oeis.org

1, 2, 6, 8, 18, 32, 108, 216, 324, 1944, 1944
Offset: 0

Views

Author

Antti Karttunen, Sep 19 2009

Keywords

Crossrefs

A163891 Positions where A163890 obtains distinct new values.

Original entry on oeis.org

0, 2, 4, 5, 24, 33, 68, 76, 96, 390, 536, 561, 1092, 1093, 1156, 1220, 1554, 6242, 8465, 8584, 8977, 17953, 18500, 19564, 99396, 99873, 101444, 137286, 143633, 279620, 279622, 287108, 287248, 397585, 401796, 1597720, 1597969, 1598532
Offset: 0

Views

Author

Antti Karttunen, Sep 19 2009

Keywords

Crossrefs

A163894 The least i for which A163355^n(i) is not equal to i, 0 if no such i exists, i.e., when A163355^n = A001477.

Original entry on oeis.org

0, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 33, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 76, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 33, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 76, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 33, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 390, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4, 2, 33, 2, 4, 2, 4, 2, 24, 2, 4, 2, 4
Offset: 0

Views

Author

Antti Karttunen, Sep 19 2009

Keywords

Comments

A163355^n means n-fold application of A163355, i.e., A163355^2 = A163905, A163355^3 = A163915. By convention A163355^0 = A001477.

Crossrefs

Programs

  • Maple
    A163894 := proc(n)
        local i,a355,a,itr ;
        if n = 0 then
            return 0 ;
        end if;
        a := 0 ;
        for i from 0 do
            a355 := A163355(i) ;
            for itr from 2 to n do
                a355 := A163355(a355) ;
            end do:
            if a355 <> i then
                return i ;
            end if;
        end do:
    end proc:
    seq(A163894(n),n=0..100) ; # R. J. Mathar, Nov 22 2023

A163895 Positions where A163894 obtains record values.

Original entry on oeis.org

0, 1, 2, 6, 12, 24, 72, 144, 288, 864, 1728, 5184, 10368
Offset: 0

Views

Author

Antti Karttunen, Sep 19 2009

Keywords

Comments

The ratios a(n+1)/a(n) from n>=1 onward start as 2,3,2,2,3,2,2,3,2,3,2,...

Crossrefs

Showing 1-4 of 4 results.