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.

A216699 Digital root of cubes of Fibonacci numbers.

Original entry on oeis.org

0, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8, 1, 9, 1, 1, 8, 9, 8, 8
Offset: 0

Views

Author

Ravi Bhandari, Sep 15 2012

Keywords

Comments

This sequence repeats after every 8 terms, hence this is periodic with period 8.

Crossrefs

Programs

  • Mathematica
    Table[NestWhile[Total[IntegerDigits[#]] &, Fibonacci[n]^3, # > 9 &], {n, 0, 86}] (* T. D. Noe, Oct 15 2012 *)
    Join[{0},LinearRecurrence[{0, 0, 0, 0, 0, 0, 0, 1},{1, 1, 8, 9, 8, 8, 1, 9},86]] (* Ray Chandler, Aug 25 2015 *)