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!)
A221153 The generalized Fibonacci words q_n^[2]. 4
1, 13, 133, 13313, 13313311, 1331331131131, 133133113113113313311, 1331331131131133133113113113313313, 1331331131131133133113113113313313311311331331331131133, 13313311311311331331131131133133133113113313313311311331331331131131133133113113113313313 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
José L. Ramírez, Gustavo N. Rubiano, and Rodrigo de Castro, A Generalization of the Fibonacci Word Fractal and the Fibonacci Snowflake, arXiv preprint arXiv:1212.1368 [cs.DM], 2012.
MATHEMATICA
bar[a_List] := a /. {1 -> 3, 3 -> 1};
q[0, _] = {}; q[1, _] = {1}; q[2, i_] := If[EvenQ[i], Table[{1, 3}, {i/2}], Append[Table[{1, 3}, {(i-1)/2}], 1]] // Flatten;
q[n_, i_] := q[n, i] = If[EvenQ[i], If[Mod[n, 3] == 1, Join[q[n-1, i], q[n-2, i]], Join[q[n-1, i], q[n-2, i] // bar]], If[Mod[n, 3] == 0, Join[q[n-1, i], q[n-2, i]], Join[q[n-1, i], q[n-2, i] // bar]]];
a[n_] := q[n+1, 2] // FromDigits;
Table[a[n], {n, 0, 9}] (* Jean-François Alcover, Oct 02 2018 *)
CROSSREFS
Sequence in context: A073556 A154999 A228277 * A297335 A262572 A132935
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 04 2013
EXTENSIONS
a(6)-a(9) from Lars Blomberg, Sep 04 2017
STATUS
approved

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 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)