cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A003893 a(n) = Fibonacci(n) mod 10.

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 3, 1, 4, 5, 9, 4, 3, 7, 0, 7, 7, 4, 1, 5, 6, 1, 7, 8, 5, 3, 8, 1, 9, 0, 9, 9, 8, 7, 5, 2, 7, 9, 6, 5, 1, 6, 7, 3, 0, 3, 3, 6, 9, 5, 4, 9, 3, 2, 5, 7, 2, 9, 1, 0, 1, 1, 2, 3, 5, 8, 3, 1, 4, 5, 9, 4, 3, 7, 0, 7, 7, 4, 1, 5, 6, 1, 7, 8, 5, 3, 8, 1, 9, 0, 9, 9, 8, 7, 5, 2, 7, 9, 6, 5, 1, 6, 7, 3
Offset: 0

Views

Author

N. J. A. Sloane, elipper(AT)uoft02.utoledo.edu

Keywords

Comments

All blocks of 60 successive terms contain 20 even and 40 odd numbers. - Reinhard Zumkeller, Apr 09 2005
These are the analogs of the Fibonacci numbers in carryless arithmetic mod 10.

References

  • G. Marsaglia, The mathematics of random number generators, pp. 73-90 of S. A. Burr, ed., The Unreasonable Effectiveness of Number Theory, Proc. Sympos. Appl. Math., 46 (1992). Amer. Math. Soc.

Crossrefs

Programs

  • Haskell
    a003893 n = a003893_list !! n
    a003893_list = 0 : 1 : zipWith (\u v -> (u + v) `mod` 10)
                           (tail a003893_list) a003893_list
    -- Reinhard Zumkeller, Jul 01 2013
    
  • Magma
    [Fibonacci(n) mod 10: n in [0..100]]; // Vincenzo Librandi, Feb 04 2014
    
  • Maple
    with(combinat,fibonacci); A003893 := proc(n) fibonacci(n) mod 10; end;
  • Mathematica
    Table[Mod[Fibonacci[n], 10], {n, 0, 99}] (* Alonso del Arte, Jul 29 2013 *)
    Table[IntegerDigits[Fibonacci[n]][[-1]], {n, 0, 99}] (* Alonso del Arte, Jul 29 2013 *)
    NumberDigit[Fibonacci[Range[0,120]],0] (* Requires Mathematica version 12 or later *) (* Harvey P. Dale, Jul 05 2021 *)
  • PARI
    a(n)=fibonacci(n)%10 \\ Charles R Greathouse IV, Feb 03 2014
    
  • Python
    A003893_list, a, b, = [], 0, 1
    for _ in range(10**3):
        A003893_list.append(a)
        a, b = b, (a+b) % 10 # Chai Wah Wu, Nov 26 2015

Formula

Periodic with period 60 = A001175(10).
From Reinhard Zumkeller, Apr 09 2005: (Start)
a(n) = (a(n-1) + a(n-2)) mod 10 for n > 1, a(0) = 0, a(1) = 1.
a(n) = A105471(n) - A105472(n)*10 = A105471(n)/10. (End)
a(n) = A010879(A000045(n)). - Michel Marcus, Nov 19 2022

Extensions

More terms from Ray Chandler, Nov 15 2003