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.

Previous Showing 21-28 of 28 results.

A138486 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 2.

Original entry on oeis.org

2, 12, 1211, 3112, 122113, 133122, 222123, 134211, 31121413, 23411412, 22312413, 23211432, 32231421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {21321423,23321421}

Examples

			To get the term after 122113, we say: one 3's, three 1's, two 2's, so 133122
		

Crossrefs

Extensions

Duplicate term 21321423 removed by Georg Fischer, Sep 18 2023

A138487 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 3.

Original entry on oeis.org

3, 13, 1311, 3113, 2321, 112213, 133122, 222123, 134211, 31121413, 23411412, 22312413, 23211432, 32231421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423, 23321421, 21321423
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {21321423,23321421}

Examples

			To get the term after 112213, we say: one 3's, three 1's, two 2's, so 133122
		

Crossrefs

A138488 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 4.

Original entry on oeis.org

4, 14, 1411, 3114, 142113, 13311214, 14411223, 13223124, 14322123, 23322114, 14213223, 23322114
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {23322114,14213223}

Examples

			To get the term after 142113, we say: one 3's, three 1's, one 2's, one 4's, so 13311214
		

Crossrefs

A138489 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 5.

Original entry on oeis.org

5, 15, 1511, 3115, 152113, 13311215, 15411223, 1322311415, 1541142322, 3213243115, 1531331422, 2214313315, 1531331422, 2214313315, 1531331422, 2214313315, 1531331422, 2214313315, 1531331422, 2214313315, 1531331422
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {1531331422,2214313315}

Examples

			To get the term after 152113, we say: one 3's, three 1's, one 2's, one 5's, so 13311215
		

Crossrefs

A138490 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 6.

Original entry on oeis.org

6, 16, 1611, 3116, 162113, 13311216, 16411223, 1322311416, 1641142322, 3213243116, 1631331422, 2214313316, 1631331422, 2214313316, 1631331422, 2214313316, 1631331422, 2214313316, 1631331422, 2214313316, 1631331422
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {1631331422,2214313316}

Examples

			To get the term after 162113, we say: one 3's, three 1's, one 2's, one 6's, so 13311216
		

Crossrefs

A138491 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 7.

Original entry on oeis.org

7, 17, 1711, 3117, 172113, 13311217, 17411223, 1322311417, 1741142322, 3213243117, 1731331422, 2214313317, 1731331422, 2214313317, 1731331422, 2214313317, 1731331422, 2214313317, 1731331422, 2214313317, 1731331422
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {1731331422,2214313317}

Examples

			To get the term after 172113, we say: one 3's, three 1's, one 2's, one 7's, so 13311217
		

Crossrefs

A138492 Say what you see in previous term, from the right, reporting total number for each digit encountered. Initial term is 8.

Original entry on oeis.org

8, 18, 1811, 3118, 182113, 13311218, 18411223, 1322311418, 1841142322, 3213243118, 1831331422, 2214313318, 1831331422, 2214313318, 1831331422, 2214313318, 1831331422, 2214313318, 1831331422, 2214313318, 1831331422
Offset: 0

Views

Author

Keywords

Comments

After a while sequence has period 2 -> {1831331422,2214313318}

Examples

			To get the term after 182113, we say: one 3's, three 1's, one 2's, one 8's, so 13311218
		

Crossrefs

A363054 Look and say sequence: describe the previous term (method A, starting with 20).

Original entry on oeis.org

20, 1210, 11121110, 31123110, 132112132110, 11131221121113122110, 311311222112311311222110, 1321132132211213211321322110, 11131221131211132221121113122113121113222110, 3113112221131112311332211231131122211311123113322110
Offset: 1

Views

Author

Julia Zimmerman, May 15 2023

Keywords

Examples

			The term after 1210 is given by saying "I see one 1, one 2, one 1, and one 0", and then writing down the digits as 11-12-11-10, yielding 11121110.
		

Crossrefs

Programs

  • Mathematica
    NestList[FromDigits@ Flatten@ Map[Reverse@ Tally[#][[1]] &, Split@ IntegerDigits[#] ] &, 20, 12] (* Michael De Vlieger, Jul 05 2023 *)
  • Python
    from itertools import count, groupby, islice
    def LS(n): return int(''.join(str(len(list(g)))+k for k, g in groupby(str(n))))
    def agen(an=20): yield an; yield from (an:=LS(an) for n in count(1))
    print(list(islice(agen(), 10))) # Michael S. Branicky, May 15 2023
Previous Showing 21-28 of 28 results.