OFFSET
0,1
COMMENTS
2 * 10^6 < a(5) < 7 * 10^12 (see G. Martin's proof at Mathematics Stack Exchange).
The brute-force Mathematica program given below overflows for a(5).
a(5) = 603919253973 was computed by Japheth Lim (see Math.StackExchange link). - Vladimir Reshetnikov, Aug 23 2016
Exactly the same sequence results from the arithmetic mean, geometric mean and harmonic mean, provided that the initial set consists of two distinct positive numbers.
LINKS
Mathematics Stack Exchange, Repeatedly taking mean values of non-empty subsets of a set: 2, 3, 5, 15, 875, ..., May 23 2016.
EXAMPLE
Before the first step the set is {0, 1}, so a(0) = 2.
After the first step the set is {0, 1, 1/2}, so a(1) = 3.
After the second step the set is {0, 1, 1/2, 1/4, 3/4}, so a(2) = 5.
MATHEMATICA
Length/@NestList[Union[Mean/@Rest@Subsets@#]&, {0, 1}, 4]
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Vladimir Reshetnikov, May 23 2016
EXTENSIONS
a(5) from Vladimir Reshetnikov, Aug 23 2016
STATUS
approved