OFFSET
0,3
COMMENTS
a(n) = number of edges from 0 to n in the tree at A258241.
LINKS
Clark Kimberling, Table of n, a(n) for n = 0..10000
EXAMPLE
16->27->15->8->4->6->3->1->0, so that a(16) = 8.
MATHEMATICA
r = Sqrt[3]; w = Table[Floor[r*n], {n, 1, 1000}];
f[x_] := If[MemberQ[w, x], Floor[x/r], Floor[r*x]];
g[x_] := Drop[FixedPointList[f, x], -1];
Table[-1+ Length[g[n]], {n, 0, 100}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 07 2015
STATUS
approved