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!)
A082115 Fibonacci sequence (mod 3). 12
0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 2, 0, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Fibonacci Number
FORMULA
Sequence is periodic with Pisano period 8.
a(n) = 1-floor(n/8)+floor((n-1)/8)+floor((n-3)/8)-2*floor((n-4)/8) +2*floor((n-5)/8)-floor((n-7)/8). - Hieronymus Fischer, Jul 01 2007
a(n) = 1+((n mod 8)+((n+1)mod 8)-2*((n+3)mod 8)+2*((n+4)mod 8) -((n+5)mod 8) -((n+7)mod 8))/8. - Hieronymus Fischer, Jul 01 2007
G.f.: (x+x^2+2x^3+2x^5+2x^6+x^7)/(1-x^8). - Hieronymus Fischer, Jul 01 2007
a(n) = A131295(n) mod 3 (for n>0). - Hieronymus Fischer, Jul 01 2007
MATHEMATICA
Table[Mod[Fibonacci[n], 3], {n, 0, 100}](* Vincenzo Librandi, Feb 04 2014 *)
LinearRecurrence[{0, 0, 0, 0, 0, 0, 0, 1}, {0, 1, 1, 2, 0, 2, 2, 1}, 103] (* Ray Chandler, Aug 27 2015 *)
PROG
(Magma) [Fibonacci(n) mod 3: n in [0..100]]; // Vincenzo Librandi, Feb 04 2014
(PARI) a(n)=fibonacci(n%8)%3 \\ Charles R Greathouse IV, Sep 28 2015
CROSSREFS
Sequence in context: A138231 A155100 A076880 * A161553 A366444 A256232
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Apr 03 2003
EXTENSIONS
Added a(0)=0. - Jon Perry, Sep 15 2013
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 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)