A055170 n-th distinct number to appear in A055168; also the n-th to appear in A217760.
0, 1, 2, 3, 4, 5, 6, 9, 7, 11, 8, 13, 17, 10, 19, 21, 15, 12, 23, 26, 20, 14, 16, 28, 22, 32, 24, 35, 27, 18, 38, 30, 25, 41, 34, 29, 44, 31, 48, 50, 46, 36, 52, 39, 42, 56, 37, 60, 54, 47, 33, 63, 58, 40, 43, 68, 53, 45, 72, 65, 76, 55, 61, 51
Offset: 1
Keywords
Examples
Following the adjective-before-noun definition at A217760, the first segments are 0..1..2 1..3 3 1..4 5 2 2..5 6 5 3 1 1..6 9 6 5 2 4 1.. ...0..0 1..0 1 2..0 1 2 3..0 1 2 3 4 5..0 1 2 3 4 5 6.. (continuing:) 7 11 8 6 4 6 4 1....8 13 9 7 7 7 5 2 1 1..1 0..1 2 3 4 5 6 9....0..1 2 3 4 5 6 9 7 11 8, this last segment counting the "8 0's and 13 1's and 9 2's..." which have previously appeared. The numbers 8, 13, 9 are used as adjectives and the numbers 0 1 2 3 4 5 6 9 7 11 8 (as in A055170) are used as nouns.
Links
- Peter J. C. Moses, Table of n, a(n) for n = 1..6000
Programs
-
Mathematica
s = {0}; Do[s = Flatten[{s, {Count[s, #], #} & /@ (DeleteDuplicates[s])}], {30}]; DeleteDuplicates[s] (* Peter J. C. Moses, Mar 25 2013 *)
Extensions
Corrected and edited by Clark Kimberling, Oct 24 2009
Comments