OFFSET
1,2
COMMENTS
Least integer of the form n!/{(n-k)!}^2.
Similar to but different from A001405.
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..1000
EXAMPLE
E.g. for n=9, 10, 11, 12, a(n)=630, 7, 77, 924 while the corresponding central binomial coefficients are 126, 252, 462, 924 respectively.
MATHEMATICA
f[n_] := Min[ Select[ Table[ n!/(n - k)!^2, {k, n}], IntegerQ[ # ] &]]; Table[ f[n], {n, 33}] (Robert G. Wilson v)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jul 25 2000
STATUS
approved