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.

Showing 1-3 of 3 results.

A045982 Describe all the previous terms!.

Original entry on oeis.org

1, 11, 31, 311311, 31131113211321, 3113111321132113211331131221131211, 31131113211321132113311312211312111321133113122113122113122123211311222113111221
Offset: 1

Views

Author

Keywords

Comments

Previous terms are concatenated into one large integer.
Next terms are 184, 420, 958 and 2194 digits long.

Crossrefs

Programs

  • Haskell
    a045982 n = a045982_list !! (n-1)
    a045982_list = 1 : f [1] where
       f xs = y : f (xs ++ [y]) where
         y = a045918 $ read (concatMap show xs)
    -- Reinhard Zumkeller, Feb 28 2014

Extensions

More terms from Patrick De Geest, Jun 15 1999

A343837 Describe all the previous terms (previous terms are described one by one in succession; method - digit-indication followed by frequency, initial term is 1).

Original entry on oeis.org

1, 11, 1112, 11121321, 11121321132111312111, 1112132113211131211113211131211231211331112113
Offset: 1

Views

Author

Ilya Gutkovskiy, May 01 2021

Keywords

Comments

The next term is too large to include.

Examples

			a(4) is obtained by saying "1 once; 1 twice; 1 thrice, 2 once", which gives 11121321.
		

Crossrefs

A343838 Describe all the previous terms (previous terms are concatenated into one large integer; method - digit-indication followed by frequency, initial term is 1).

Original entry on oeis.org

1, 11, 13, 1431, 143111413111, 14311141311241311341113113, 14311141311241311341113114413113411131122141113112314113311231
Offset: 1

Views

Author

Ilya Gutkovskiy, May 01 2021

Keywords

Comments

The next term is too large to include.

Examples

			a(4) is obtained by saying "1 four times, 3 once", which gives 1431.
		

Crossrefs

Showing 1-3 of 3 results.