login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A235249
Fixed point when A001175 (Pisano periods) is iterated with starting value n.
3
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,2
COMMENTS
Are the powers of 5 (together with 2) the indices of records in this sequence? - Charles R Greathouse IV, Aug 11 2022
LINKS
J. D. Fulton and W. L. Morris, On arithmetical functions related to the Fibonacci numbers, Acta Arithmetica, 16 (1969), 105-110.
Wikipedia, Pisano period
FORMULA
a(n) = 24*5^(A001179(n)-1) for n > 1.
A001175(a(n)) = a(n).
PROG
(Haskell)
a235249 n = if y == n then n else a235249 y where y = a001175 n
CROSSREFS
Sequence in context: A010863 A362116 A217140 * A115028 A099543 A188311
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jan 15 2014
STATUS
approved