login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A192663
Floor-Sqrt transform of the binomial coefficients bin(3*n,n) (A005809).
0
1, 1, 3, 9, 22, 54, 136, 340, 857, 2164, 5481, 13911, 35379, 90124, 229913, 587254, 1501615, 3843314, 9845118, 25238541, 64744455, 166190960, 426829202, 1096784835, 2819620836, 7251796132, 18658280277, 48023738374, 123648031266, 318460151301, 820446813941
OFFSET
0,3
FORMULA
a(n) = floor(sqrt(binomial(3*n,n))).
MATHEMATICA
Table[Floor[Sqrt[Binomial[3n, n]]], {n, 0, 100}]
PROG
(Maxima) makelist(floor(sqrt(binomial(3*n, n))), n, 0, 24);
CROSSREFS
Sequence in context: A336511 A054442 A354648 * A114697 A032284 A329163
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Jul 07 2011
STATUS
approved