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.
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
Keywords
Links
- A. Karttunen, Table of n, a(n) for n = 0..4095
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
Comments