OFFSET
2,1
COMMENTS
Mentioned in the Diaconis-Mosteller article.
LINKS
Iain Fox, Table of n, a(n) for n = 2..10000
P. Diaconis and F. Mosteller, Methods of studying coincidences, J. Amer. Statist. Assoc. 84 (1989), pp. 853-861.
Eric Weisstein's World of Mathematics, Birthday Problem
MAPLE
a:= n-> floor(47*(n-3/2)^(3/2)):
seq(a(n), n=2..55); # Alois P. Heinz, May 17 2023
PROG
(PARI) vector(50, n, n++; floor(47*(n-1.5)^(3/2))) \\ Derek Orr, Sep 05 2015
(PARI) a(n) = floor(47*(n-1.5)^1.5) \\ Charles R Greathouse IV, Sep 05 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
First term removed by Derek Orr, Sep 05 2015
Offset corrected by Iain Fox, Nov 16 2017
Entry revised by N. J. A. Sloane, Jun 21 2023
STATUS
approved