OFFSET
1,1
COMMENTS
Segments (generated as at A217760): 5; 1,5; 2,5,1,1; 3,5,3,1,1,2; ... The 4th segment is read "3 5's and 3 1's and 1 2" as a record of what was previously written; 3,3,1 are adjectives and 5 1 2 are nouns. Conjecture: every nonnegative integer occurs. - Clark Kimberling, Mar 25 2013
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
EXAMPLE
Write 5, thus having 1 5, thus having 2 5's and 1 1, thus having 3 5's and 3 1's and 1 2, etc.
MATHEMATICA
s = {5}; Do[s = Flatten[{s, {Count[s, #], #} & /@ DeleteDuplicates[s]}], {14}]; s (* Peter J. C. Moses, Mar 21 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 27 2000
STATUS
approved