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.

A209234 A two-digit Look-and-Say sequence starting with 10: each term summarizes the increasing two-digit substrings of the previous term.

Original entry on oeis.org

10, 110, 110111, 101110311, 101103210311131, 101203310311113121231132, 101203210411312213120121123431132133, 201103104210311512413220421122123331232133134141143, 101203204310411412313214115220421222223124431232333134341242143151
Offset: 0

Views

Author

Reinhard Zumkeller, Jan 13 2013

Keywords

Examples

			a(0) = 10: 1x10 --> a(1)=110;
a(1) = 110: 1x10 and 1x11 --> a(2)=110111;
a(2) = 110111: 1x01, 1x10 and 3x11 -> a(3)=101110311;
a(3) = 101110311: 1x01, 1x03, 2x10, 3x11 and 1x31 -> a(4)=101103210311131.
		

Crossrefs

Cf. A209233 (start=11), A221368 (start=12), A221369 (start=13), A221372 (start=19), A221373 (start=99).

Programs

  • Haskell
    -- See Link.