cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A079730 Kolakoski variation using (1,2,3,4) starting with 1,2.

Original entry on oeis.org

1, 2, 2, 3, 3, 4, 4, 4, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 1, 2, 3, 4, 4, 1, 1, 2, 2, 3, 3, 4, 4, 4, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 1, 2, 3, 3, 4, 4, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 1, 1, 1, 1, 2, 3, 4, 1, 1
Offset: 1

Views

Author

Benoit Cloitre, Feb 17 2003

Keywords

Comments

a(1)=1 then a(n) is the length of n-th run. This kind of Kolakoski variation using(1,2,3,4,...,m) as m grows reaches the Golomb's sequence A001462.

Examples

			Sequence begins: 1,2,2,3,3,4,4,4,1,1,1,2,2,2,2,3,3,3,3, read it as: (1),(2,2),(3,3),(4,4,4),(1,1,1),(2,2,2,2),(3,3,3,3),... then count the terms in parentheses to get: 1,2,2,3,3,4,4,.. which is the same sequence.
		

Crossrefs

Cf. A000002.

Programs

  • Mathematica
    seed = {1, 2, 3, 4};
    w = {};
    i = 1;
    Do[
      w = Join[w,
        Array[seed[[Mod[i - 1, Length[seed]] + 1]] &,
         If[i > Length[w], seed, w][[i]]]];
      i++
      , {n, 41}];
    w

Formula

Partial sum sequence is expected to be asymptotic to 5/2*n.

Extensions

Corrected by Ivan Neretin, Apr 01 2015