[go: up one dir, main page]

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

Revision History for A257243 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Tree R defined as the subtree of A257242 tree made of all shortest walks.
(history; published version)
#9 by Bruno Berselli at Tue Apr 21 04:45:15 EDT 2015
STATUS

editing

approved

#8 by Bruno Berselli at Tue Apr 21 04:45:11 EDT 2015
CROSSREFS
STATUS

approved

editing

#7 by Bruno Berselli at Tue Apr 21 04:42:43 EDT 2015
STATUS

proposed

approved

#6 by Michel Marcus at Mon Apr 20 12:32:18 EDT 2015
STATUS

editing

proposed

#5 by Michel Marcus at Mon Apr 20 12:24:26 EDT 2015
COMMENTS

The right diagonal is sequence A000045 (Fibonacci).

STATUS

proposed

editing

#4 by Michel Marcus at Sun Apr 19 10:51:28 EDT 2015
STATUS

editing

proposed

#3 by Michel Marcus at Sun Apr 19 10:27:46 EDT 2015
EXAMPLE

Triangle starts:

Tree starts:

1

|

1

|

2--------------

| |

1 3---------

| | |

3----- 1 5-----

| | | | |

2 4---- 4---- 2 8----

| | | | | | | |

5 1 7 3 5 7 3 13

#2 by Michel Marcus at Sun Apr 19 10:05:01 EDT 2015
NAME

allocated for Michel MarcusTree R defined as the subtree of A257242 tree made of all shortest walks.

DATA

1, 1, 2, 1, 3, 3, 1, 5, 2, 4, 4, 2, 8, 5, 1, 7, 3, 5, 7, 3, 13, 3, 7, 5, 3, 11, 7, 1, 9, 5, 9, 11, 5, 21, 8, 2, 12, 4, 6, 10, 4, 18, 4, 10, 6, 4, 14, 12, 2, 16, 8, 14, 18, 8, 34, 5, 11, 9, 5, 19, 9, 1, 11, 7, 13, 15, 7, 29, 11, 3, 17, 5, 7, 13, 5, 23, 7, 17

OFFSET

1,3

COMMENTS

"In other words, we start from 1, with only child 1. Then, the (n-1) first rows being constructed, the n-th one is made of the nodes b such that, denoting by a their parent, the pair (a; b) did not already appear upper in the subtree (that is no row before the n-th one shows the pair(a; b)). The tree R is the restricted subtree of T."

"The sequence of labels in the tree R, read in breadth-first order is a beta-regular sequence, as defined by Allouche, Scheicher and Tichy, where here beta is the numeration system defined by the Fibonacci sequence."

LINKS

J.-P. Allouche, K. Scheicher and R. Tichy, <a href="http://dml.cz/handle/10338.dmlcz/133301">Regular maps in generalized number systems, Math. Slovaca 50 (2000), 41-58.

B. Rittaud, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL10/Rittaud2/rittaud11.html">On the Average Growth of Random Fibonacci Sequences</a>, Journal of Integer Sequences, 10 (2007), Article 07.2.4.

EXAMPLE

1;

1;

2;

1, 3;

3, 1, 5;

2, 4, 4, 2, 8;

5, 1, 7, 3, 5, 7, 3, 13;

...

PROG

(PARI) printrow(row) = for (k=1, #row, if (row[k]>0, print1(row[k], ", "))); print();

dchild(a, b) = b-a;

schild(a, b) = b+a;

tablr(nn) = {printrow(prow = [1]); printrow(crow = [1]); nrow = vector(2); nrow[2] = schild(prow[1], crow[1]); printrow(nrow); for (n=4, nn, prow = crow; crow = nrow; nrow = vector(4*#prow); inew = 0; ichild = 0; for (inode=1, #prow, node = prow[inode]; child = crow[ichild++]; if (child > 0, nrow[inew++] = dchild(node, child); nrow[inew++] = schild(node, child), nrow[inew++] = -1; nrow[inew++] = -1); child = crow[ichild++]; if (child > 0, nrow[inew++] = dchild(node, child); nrow[inew++] = schild(node, child), nrow[inew++] = -1; nrow[inew++] = -1); ); printrow(nrow); ); }

CROSSREFS
KEYWORD

allocated

nonn,tabf

AUTHOR

Michel Marcus, Apr 19 2015

STATUS

approved

editing

#1 by Michel Marcus at Sun Apr 19 09:56:18 EDT 2015
NAME

allocated for Michel Marcus

KEYWORD

allocated

STATUS

approved