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!)
A022499 Describe the previous term! (method B - initial term is 3). 10
3, 31, 3111, 3113, 311231, 3112213111, 311222113113, 31122312311231, 3112223111213112213111, 31122331132111311222113113, 311222321231211331122312311231 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Method B = 'digit'-indication followed by 'frequency'.
LINKS
EXAMPLE
E.g. the term after 3113 is obtained by saying "3 once, 1 twice, 3 once", which gives 311231.
MATHEMATICA
a[1] = 3;
a[n_] := a[n] = {#[[1]], Length[#]}& /@ Split[a[n-1] // IntegerDigits] // Flatten // FromDigits;
Array[a, 11] (* Jean-François Alcover, Jul 13 2016, updated Jan 05 2018 *)
CROSSREFS
Cf. A006715.
Sequence in context: A172645 A201604 A048562 * A129209 A134721 A002707
KEYWORD
nonn,base,easy,nice
AUTHOR
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 23 12:59 EDT 2024. Contains 371913 sequences. (Running on oeis4.)