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”).

A192657
Convolution of the Floor-Sqrt transform of central binomial coefficients.
1
1, 2, 5, 12, 28, 62, 138, 300, 646, 1378, 2919, 6148, 12890, 26914, 56010, 116224, 240567, 496854, 1024202, 2107660, 4330651, 8886094, 18210883, 37278902, 76234264, 155750644, 317932560, 648477346, 1321706751, 2692024172, 5479576436, 11146993980, 22663554750, 46054591760
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} floor(sqrt(binomial(2*k,k)))*floor(sqrt(binomial(2*n-2*k,n-k))).
MATHEMATICA
Table[Sum[Floor[Sqrt[Binomial[2k, k]]]Floor[Sqrt[Binomial[2n-2k, n-k]]], {k, 0, n}], {n, 0, 100}]
PROG
(Maxima) makelist(sum(floor(sqrt(binomial(2*k, k)))*floor(sqrt(binomial(2*n-2*k, n-k))), k, 0, n), n, 0, 24);
CROSSREFS
Sequence in context: A202604 A118898 A111586 * A320590 A006979 A019301
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Jul 07 2011
STATUS
approved