OFFSET
1,2
COMMENTS
Old name was "From Radon's theorem".
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Matthew House, Table of n, a(n) for n = 1..3328
J. Eckhoff, Der Satz von Radon in konvexen Produktstrukturen II, Monat. f. Math., 73 (1969), 7-30.
Michael Hendriksen and Nils Kapust, On the Comparison of Incompatibility of Split Systems Across Different Numbers of Taxa, Bull. of Math. Biology (2021) Vol. 83, Art. No. 78.
FORMULA
a(n) = ceiling(binomial(n + 1, floor((n + 1) / 2)) / 2). - Sean A. Irvine, May 21 2014; corrected by Matthew House, Jul 29 2015
MATHEMATICA
Table[Ceiling[Binomial[n + 1, Floor[(n + 1)/2]]/2], {n, 40}] (* Vincenzo Librandi, Jul 30 2015 *)
PROG
(Magma) [Ceiling(Binomial(n+1, Floor((n+1)/2))/2): n in [1..40]]; // Vincenzo Librandi, Jul 30 2015
(PARI) vector(40, n, ceil(binomial(n + 1, floor((n + 1) / 2)) / 2)) \\ Michel Marcus, Jul 30 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
New name and more terms from Sean A. Irvine, May 21 2014
STATUS
approved