A192664 Floor-Sqrt transform of the binomial coefficients bin(2*n+1,n) (A001700).
1, 1, 3, 5, 11, 21, 41, 80, 155, 303, 593, 1162, 2280, 4478, 8806, 17336, 34158, 67361, 132938, 262532, 518776, 1025694, 2028969, 4015445, 7950176, 15746722, 31200476, 61841291, 122611717, 243171319, 482404577, 957241908, 1899924792, 3771806031, 7489535293, 14874685547
Offset: 0
Keywords
Programs
-
Mathematica
Table[Floor[Sqrt[Binomial[2n+1,n]]],{n,0,100}]
-
Maxima
makelist(floor(sqrt(binomial(2*n+1,n))),n,0,24);
Formula
a(n) = floor(sqrt(binomial(2*n+1,n))).