login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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 A193209 A268743
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 15 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 9 20:01 EDT 2024. Contains 374191 sequences. (Running on oeis4.)