A163911 Maximum cycle size in range [A000302(n-1)..A024036(n)] of permutation A163355/A163356.
1, 2, 6, 8, 18, 32, 108, 216, 324, 1944, 1944
Offset: 0
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.
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
Comments