OFFSET
2,2
COMMENTS
Related to the birthday paradox. This is essentially the same as A033810.
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 2..10000
EXAMPLE
a(365)=22 because if 22 people are sampled, it is unlikely that two have the same birthday; but if 23 are sampled, it is likely.
MATHEMATICA
lst = {}; s = 1; Do[Do[If[Product[(n - i)/n, {i, j}] <= 1/2, If[j > s, s = j]; AppendTo[lst, j]; Break[]], {j, s, s + 1}], {n, 2, 86}]; lst (* Arkadiusz Wesolowski, Apr 29 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Artemario Tadeu Medeiros da Silva (artemario(AT)uol.com.br), Nov 06 2003
EXTENSIONS
Edited by Don Reble, Nov 07 2005
STATUS
approved