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!)
A260453 Infinite palindromic word (a(1),a(2),a(3),...) with initial word w(1) = (3,1,2) and midword sequence (a(n)); see Comments. 4

%I #5 Sep 01 2015 03:10:21

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

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

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

%N Infinite palindromic word (a(1),a(2),a(3),...) with initial word w(1) = (3,1,2) and midword sequence (a(n)); see Comments.

%C Below, w* denotes the reversal of a word w, and "sequence" and "word" are interchangable. An infinite word is palindromic if it has infinitely many initial subwords w such that w = w*.

%C Many infinite palindromic words (a(1),a(2),...) are determined by an initial word w and a midword sequence (m(1),m(2),...) of palindromes, as follows: for given w of length k, take w(1) = w = (a(1),a(2),...,a(k)). Form the palindrome w(2) = w(1)m(1)w(1)* by concatenating w(1), m(1), and w(1)*. Continue inductively; i.e., w(n+1) = w(n)m(n)w(n)* for all n >= 1. See A260390 for examples.

%H Clark Kimberling, <a href="/A260453/b260453.txt">Table of n, a(n) for n = 1..10000</a>

%e w(1) = 312, the initial word.

%e w(2) = 3123213 ( = 312+3+213, where + = concatenation)

%e w(3) = w(2)+1+w(2)*

%e w(4) = w(3)+2+w(3)*

%t u[1] = {3, 1, 2}; m[1] = {u[1][[1]]};

%t u[n_] := u[n] = Join[u[n - 1], m[n - 1], Reverse[u[n - 1]]]

%t m[k_] := {u[k][[k]]}; v = u[8]

%Y Cf. A260390, A260449.

%K nonn,easy

%O 1,1

%A _Clark Kimberling_, Aug 29 2015

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 August 29 11:28 EDT 2024. Contains 375516 sequences. (Running on oeis4.)