login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A261606 a(n) = Fibonacci(n) mod 60. 4
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 29, 24, 53, 17, 10, 27, 37, 4, 41, 45, 26, 11, 37, 48, 25, 13, 38, 51, 29, 20, 49, 9, 58, 7, 5, 12, 17, 29, 46, 15, 1, 16, 17, 33, 50, 23, 13, 36, 49, 25, 14, 39, 53, 32, 25, 57, 22, 19, 41, 0, 41, 41, 22, 3, 25, 28, 53 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n) = A261575(n,0).
Periodic with period length 120. - Ray Chandler, Sep 23 2015
LINKS
Eric Weisstein's World of Mathematics, Sexagesimal
Wikipedia, Sexagesimal
FORMULA
a(0) = 0, a(1) = 1 and for n > 1: a(n) = (a(n-1) + a(n-2)) mod 60.
MATHEMATICA
Mod[Fibonacci[Range[67]], 60] (* Michael De Vlieger, Jan 22 2022 *)
PROG
(Haskell)
a261606 n = a261606_list !! n
a261606_list = 0 : 1 : map (flip mod 60)
(zipWith (+) a261606_list $ tail a261606_list)
(PARI) a(n) = fibonacci(n) % 60; \\ Michel Marcus, Jan 22 2022
CROSSREFS
Sequence in context: A013987 A261607 A261575 * A261598 A261587 A206139
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 09 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)