A098080 Nontrivial slowest increasing sequence whose succession of digits is that of the nonnegative integers.
0, 12, 34, 56, 78, 910, 1112, 1314, 1516, 1718, 1920, 2122, 2324, 2526, 2728, 2930, 3132, 3334, 3536, 3738, 3940, 4142, 4344, 4546, 4748, 4950, 5152, 5354, 5556, 5758, 5960, 6162, 6364, 6566, 6768, 6970, 7172, 7374, 7576, 7778, 7980, 8182, 8384, 8586, 8788, 8990, 9192, 9394, 9596, 9798, 99100, 101102
Offset: 0
Crossrefs
Cf. A030655.
Programs
-
Mathematica
jd[{a_,b_}]:=Module[{ida=IntegerDigits[a],idb=IntegerDigits[b]}, FromDigits[ Join[ida,idb]]]; Join[{0},jd/@Partition[Range[110],2]] (* Harvey P. Dale, Feb 20 2012 *)
Formula
Write down the sequence of nonnegative integers and consider its succession of digits. Divide up into chunks of minimal length (and not beginning with 0) so that chunks are increasing numbers in order to form the slowest ever increasing sequence of slices (disregarding the number of digits) of the succession of the digits of the whole numbers.
Comments