Grow a binary tree using the following rules. Initially there is a single node labeled 1. At each step we add 1 to all labels less than 3. If a node has label 3 and zero or one descendants we add a new descendant labeled 1. Sequence gives sum of all labels at step n.
A123015
Grow a binary tree using the following rules. Initially there is a single node labeled 1. At each step we add 1 to all labels less than 3. If a node has label 3 and zero or one descendants we add a new descendant labeled 1. Sequence gives sum of all labels at step n.
Terms
- a(0) =1a(1) =2a(2) =3a(3) =4a(4) =6a(5) =8a(6) =10a(7) =13a(8) =17a(9) =21a(10) =26a(11) =33a(12) =41a(13) =50a(14) =62a(15) =77a(16) =94a(17) =115a(18) =142a(19) =174a(20) =212a(21) =260a(22) =319a(23) =389a(24) =475a(25) =582a(26) =711a(27) =867a(28) =1060a(29) =1296
External references
- oeis: A123015