login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111097 Maximum likelihood estimate of the number of distinguishable marbles in an urn if repeated random sampling of one marble with replacement yields n different marbles before the first repeated marble. 0
1, 2, 5, 8, 13, 19, 25, 33, 42, 51, 62, 74, 86, 100, 115, 130, 147, 165, 183, 203, 224, 245, 268, 292, 316, 342, 369, 396, 425 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

The numbers in my sequence match the first 8 nonzero numbers in sequence A083704 and the first 40 terms (at least) remain very close to those in A083704 . The program below is very crude and will yield the first 20 terms. To get further terms, one must increase the maximum value of n and then increase the maximum value of k so that the maximum value of k is larger than a(n) for the maximum value of n.

FORMULA

No formula yet, but I want to stake my claim.

EXAMPLE

a(3)=5 because of all urns containing marbles numbered 1, 2, 3, ..., k, an urn containing k = 5 marbles has the largest probability of yielding 3 different marbles before a first repeated marble when sampling with replacement.

MATHEMATICA

thetable = Table[N[n/k*Product[(k - i)/k, {i, 1, n - 1}]], {n, 1, 20}, {k, 1, 300}]; maximums = Map[Max, thetable]; maximumlikelihoodestimates = {}; For[i = 1, i <= Length[thetable], i++, maximumlikelihoodestimates = Append[maximumlikelihoodestimates, Position[thetable[[i]], maximums[[i]]]]]; maximumlikelihoodestimates

CROSSREFS

Cf. A027916. [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 18 2008]

Sequence in context: A200274 A122221 A083704 * A027916 A054254 A025216

Adjacent sequences:  A111094 A111095 A111096 * A111098 A111099 A111100

KEYWORD

nonn

AUTHOR

Marc A. Brodie (mbrodie(AT)wju.edu), Oct 13 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 20:38 EST 2012. Contains 205663 sequences.