A235249 Fixed point when A001175 (Pisano periods) is iterated with starting value n.
1, 24, 24, 24, 120, 24, 24, 24, 24, 120, 120, 24, 24, 24, 120, 24, 24, 24, 24, 120, 24, 120, 24, 24, 600, 24, 24, 24, 24, 120, 120, 24, 120, 24, 120, 24, 24, 24, 24, 120, 120, 24, 120, 120, 120, 24, 24, 24, 24, 600, 24, 24, 24, 24, 120, 24, 24, 24, 24, 120
Offset: 1
Keywords
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- J. D. Fulton and W. L. Morris, On arithmetical functions related to the Fibonacci numbers, Acta Arithmetica, 16 (1969), 105-110.
- Wikipedia, Pisano period
Programs
-
Haskell
a235249 n = if y == n then n else a235249 y where y = a001175 n
Comments