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”).

A216699
Digital root of cubes of Fibonacci numbers.
2
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,4
COMMENTS
This sequence repeats after every 8 terms, hence this is periodic with period 8.
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 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Ravi Bhandari, Sep 15 2012
STATUS
approved