OFFSET
1,1
COMMENTS
Segments (generated as at A055168): 2; 2,1; 2,2,1,1; 2,4,1,3,2,5; ...
Conjecture: every positive integer occurs.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
EXAMPLE
Write 2, thus having 2 once, thus having 2 twice and 1 once, thus having 2 4 times and 1 3 times and 2 5 times, etc.
MATHEMATICA
s = {2}; Do[s = Flatten[{s, {#, Count[s, #]} & /@ DeleteDuplicates[s]}], {24}]; s (* Peter J. C. Moses, Mar 21 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 27 2000
STATUS
approved