A131296 a(n) = ds_5(a(n-1))+ds_5(a(n-2)), a(0)=0, a(1)=1; where ds_5=digital sum base 5.
0, 1, 1, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3, 5, 4, 5, 5, 2, 3
Offset: 0
Examples
a(10)=3, since a(8)=5=10(base 5), ds_5(5)=1, a(9)=2, ds_5(2)=2 and so a(10)=1+2.
Links
Crossrefs
Programs
-
Mathematica
nxt[{a_,b_}]:={b,Total[IntegerDigits[a,5]]+Total[IntegerDigits[b,5]]}; NestList[nxt,{0,1},100][[;;,1]] (* Harvey P. Dale, Sep 01 2024 *)
Formula
Extensions
Incorrect comment removed by Michel Marcus, Apr 29 2018
Comments