OFFSET
0,2
COMMENTS
The vertices of the graph consist of all of the positive integers that are not divisible by 3. A vertex v (for v >= 4) has 2*v as left child and 2*v - 3 as right child (see example).
Matos and Antunes (1998) use this graph to illustrate the fact that, for a string (theorem) S belonging to the MIU formal system containing no U characters, the length of the path from vertex v (where v is the number of I characters in S) to the root corresponds to the number of times step 2 of their algorithm for generating "normal" proofs (described in A369409) is applied.
See A368946 for the description of the MIU formal system.
REFERENCES
Douglas R. Hofstadter, Gödel, Escher, Bach: an Eternal Golden Braid, Basic Books, 1979, pp. 33-41.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..16384 (rows 0..15 of the triangle, flattened).
Armando B. Matos and Luis Filipe Antunes, Short Proofs for MIU theorems, Technical Report Series DCC-98-01, University of Porto, 1998.
Wikipedia, MU Puzzle.
FORMULA
T(n,1) = n + 1 for n < 2.
T(n,k) = 2^n - 3*(k-1) for n >= 2 and 1 <= k <= 2^(n-2).
EXAMPLE
The first levels of the graph are shown below. Cf. Matos and Antunes (1998), p. 7, figure 1.
+--1
|
+--2
|
+-----------4-----------+
| |
+-----8-----+ +-----5-----+
| | | |
+-16--+ +-13--+ +-10--+ +--7--+
| | | | | | | |
32 29 26 23 20 17 14 11
...
Written as an irregular triangle, the sequence begins:
[0] 1;
[1] 2;
[2] 4;
[3] 8 5;
[4] 16 13 10 7;
[5] 32 29 26 23 20 17 14 11;
...
MATHEMATICA
A369414row[n_] := If[n <= 1, {n+1}, Range[2^n, 3+2^(n-2), -3]];
Array[A369414row, 8, 0]
CROSSREFS
KEYWORD
nonn,tabf,easy
AUTHOR
Paolo Xausa, Jan 24 2024
STATUS
approved