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

A183609
a(n) = Sum_{k=0..n-1} binomial(n^2+k^2, k) * (n-k)^2/(n^2 + k^2) for n>0 with a(0)=1.
0
1, 1, 2, 11, 140, 3317, 121528, 6119023, 393990922, 30967643569, 2877662229666, 308859441395270, 37617620420277248, 5127547379787329620, 773519559519251515487, 127966383690518560215307, 23038617512398942817456756
OFFSET
0,3
FORMULA
a(n) ~ 2^(n-5/2) * exp(n-5/4) * n^(n-7/2) / sqrt(Pi). - Vaclav Kotesovec, Mar 06 2014
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n^2+k^2, k]*(n-k)^2/(n^2+k^2), {k, 0, n-1}], {n, 1, 20}]}] (* Vaclav Kotesovec, Mar 06 2014 *)
PROG
(PARI) {a(n)=if(n<0, 0, 0^n+sum(k=0, n-1, binomial(n^2+k^2, k)*(n-k)^2/(n^2+k^2)))}
CROSSREFS
Sequence in context: A365357 A295811 A177753 * A113148 A377894 A193209
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 15 2011
STATUS
approved