A259544 Minimum greatest integer in a set of n positive integers whose nonempty subsets all have distinct arithmetic means.
1, 2, 4, 7, 16, 32, 75, 169, 396
Offset: 1
Examples
The 15 averages of 1 to 4 elements in the set {1, 2, 5, 7} (or alternately {1, 3, 6, 7}) are all different, so a(4) <= 7. There are no such sets of 4 positive integers with all members less than 7, so in fact a(4) = 7. The set providing the last term at present in the sequence, viz. 396 = a(9), is {1, 13, 21, 51, 151, 327, 336, 342, 396} (or, by symmetry, {1, 55, 61, 70, 246, 346, 376, 384, 396}).
Links
- Javier Múgica, medias.c. A program for finding a(n). medias10.c. The same as the previous program, except that set up for checking a particular value for 10-element different average sets.
Formula
a(n) < 4^(n-1) for n > 1, see comments.
Extensions
a(9) from Javier Múgica, Nov 12 2015
Comments