OFFSET
1,2
COMMENTS
Essentially the same as A003047, which is the main entry. [From R. J. Mathar, Oct 23 2008]
REFERENCES
D.-Z. Du and F. K. Hwang, Combinatorial Group Testing and Its Applications, World Scientific, 2nd ed., 2000; p. 36.
FORMULA
a(n) = 2*(2n-1)*a(n-1)^2/(n+1).
MATHEMATICA
RecurrenceTable[{a[n] == 2*(2*n-1)*a[n-1]^2/(n+1), a[1]==1}, a, {n, 1, 10}] (* Vaclav Kotesovec, Mar 07 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 22 2000
EXTENSIONS
More terms from James A. Sellers, May 22 2000
STATUS
approved