login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A059832 A ternary tribonacci triangle: form the triangle as follows: start with 3 single values: 1, 2, 3. Each succeeding row is a concatenation of the previous 3 rows. 7

%I #32 Oct 11 2022 19:35:59

%S 1,2,3,1,2,3,2,3,1,2,3,3,1,2,3,2,3,1,2,3,1,2,3,2,3,1,2,3,3,1,2,3,2,3,

%T 1,2,3,2,3,1,2,3,3,1,2,3,2,3,1,2,3,1,2,3,2,3,1,2,3,3,1,2,3,2,3,1,2,3,

%U 3,1,2,3,2,3,1,2,3,1,2,3,2,3,1,2,3,3,1,2,3,2,3,1,2,3,2,3,1,2,3,3,1,2,3,2,3

%N A ternary tribonacci triangle: form the triangle as follows: start with 3 single values: 1, 2, 3. Each succeeding row is a concatenation of the previous 3 rows.

%C Alternatively, define a morphism f: 1 -> 2, 2 -> 3, 3 -> 1,2,3; let S(0)=1, S(k) = f(S(k-1)) for k>0; then sequence is the concatenation S(0) S(1) S(2) S(3) ...

%D C. Pickover, Wonders of Numbers, Oxford University Press, NY, 2001, p. 273.

%H N. J. A. Sloane, <a href="/A059832/b059832.txt">Table of n, a(n) for n = 0..30121</a> (Roes 0 through 17, flattened.)

%H C. A. Pickover, "Wonders of Numbers, Adventures in Mathematics, Mind and Meaning," <a href="http://www.zentralblatt-math.org/zmath/en/search/?q=an:0983.00008&amp;format=complete">Zentralblatt review</a>

%F a(n) = A059825(n) + 1. - _Sean A. Irvine_, Oct 11 2022

%e Rows 0, 1, 2, ..., 8, ... of the triangle are:

%e 0, [1]

%e 1, [2]

%e 2, [3]

%e 3, [1, 2, 3]

%e 4, [2, 3, 1, 2, 3]

%e 5, [3, 1, 2, 3, 2, 3, 1, 2, 3]

%e 6, [1, 2, 3, 2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3]

%e 7, [2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3]

%e 8, [3, 1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3, 2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3, 1, 2, 3, 3, 1, 2, 3, 2, 3, 1, 2, 3]

%e ...

%p # To get successive rows of A059832

%p S:=Array(0..100);

%p S[0]:=[1];

%p S[1]:=[2];

%p S[2]:=[3];

%p for n from 3 to 12 do

%p S[n]:=[op(S[n-3]),op(S[n-2]), op(S[n-1])];

%p lprint(S[n]);

%p od: # _N. J. A. Sloane_, Jul 04 2018

%Y Cf. A059835. Row sums A001590, row lengths A000213.

%Y Rows 0,3,6,9,12,... converge to A305389, rows 1,4,7,10,... converge to A305390, and rows 2,5,8,11,... converge to A305391.

%K easy,nonn,tabf

%O 0,2

%A _Jason Earls_, Feb 25 2001

%E More terms from Larry Reeves (larryr(AT)acm.org), Feb 26 2001

%E Entry revised by _N. J. A. Sloane_, Jun 21 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)