[go: up one dir, main page]

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

Showing entries 1-10 | older changes
Tribonacci sequences A000073 and A001590 interleaved.
(history; published version)
#60 by Michael De Vlieger at Sun Oct 27 17:55:30 EDT 2024
STATUS

reviewed

approved

#59 by Andrew Howroyd at Sun Oct 27 17:40:47 EDT 2024
STATUS

proposed

reviewed

#58 by Jason Yuen at Sun Oct 27 16:52:25 EDT 2024
STATUS

editing

proposed

#57 by Jason Yuen at Sun Oct 27 16:52:08 EDT 2024
COMMENTS

It could be more appropriate to consider the sequence as a kind of two-dimensional tribonacci sequence (a(2n-1),(a(2n)), i.e. as (1, 1), (1, 2), (2, 3), (4, 6), (7, 11), (13, 20), (24, 37), (44, 68), (81, 125), (149, 230), (274, 423), (504, 778), (927, 1431), (1705, 2632), (3136, 4841),... since after the first three initial pairs, the next pair can be obtained by adding three previous pairs component-wise. However, the first three initial pairs (1, 1), (1, 2), (2, 3) are redundant in comparison with the original integer sequence that needs only three initial integers 1, 1 and 1.

STATUS

approved

editing

#56 by Charles R Greathouse IV at Thu Sep 08 08:46:02 EDT 2022
PROG

(MAGMAMagma) I:=[1, 1, 1, 2, 2, 3]; [n le 6 select I[n] else Self(n-2) + Self(n-4) + Self(n-6): n in [1..50]]; // G. C. Greubel, Nov 03 2018

Discussion
Thu Sep 08
08:46
OEIS Server: https://oeis.org/edit/global/2944
#55 by Jon E. Schoenfield at Sun Jan 16 23:07:46 EST 2022
STATUS

editing

approved

#54 by Jon E. Schoenfield at Sun Jan 16 23:07:43 EST 2022
COMMENTS

It could be more appropriate to consider the sequence as a kind of two -dimensional tribonacci sequence (a(2n-1),(a(2n)), i.e. as (1, 1), (1, 2), (2, 3), (4, 6), (7, 11), (13, 20), (24, 37), (44, 68), (81, 125), (149, 230), (274, 423), (504, 778), (927, 1431), (1705, 2632), (3136, 4841),... since after the first three initial pairs, the next pair can be obtained by adding three previous pairs component-wise. However, the first three initial pairs (1, 1), (1, 2), (2, 3) are redundant in comparison with the original integer sequence that needs only three initial integers 1, 1 and 1.

One method to construct the two -dimensional sequence is by using the well-known tribonacci-related morphism f with f(a) = ab, f(b) = ac, f(c) = a on the monoid of strings over the alphabet {a, b, c}. Using component-wise map, the following sequence of pairs is obtained: (c,b), (a, ac), (ab, aba), (abac, abacab), (abacaba, abacabaabac), (abacabaabacab, abacabaabacababacaba), ...; which is initialized by the pair (c,b) and any pair (x,y) is followed by (f(x),f(y)). The length of every string in every component consitutes the two-dimensional sequence.

STATUS

approved

editing

#53 by Bruno Berselli at Sat Nov 03 10:44:48 EDT 2018
STATUS

reviewed

approved

#52 by Joerg Arndt at Sat Nov 03 08:38:23 EDT 2018
STATUS

proposed

reviewed

#51 by Michel Marcus at Sat Nov 03 04:58:24 EDT 2018
STATUS

editing

proposed