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!)
A209331 a(n) = Sum_{k=0..[n/2]} binomial((n-k)^2, n*k-k^2). 6
1, 1, 2, 7, 86, 1905, 66002, 5218373, 1340847046, 688750226335, 527838995308056, 707409447204872377, 2844096719471817175298, 30274246332924074325724393, 517646331335208169889265781259, 13363896516779950029547538703868509 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Equals the antidiagonal sums of triangle A209330(n,k) = C(n^2,n*k).
Limit n->infinity a(n)^(1/n^2) = ((1-r)/r)^((1-r)^2/(3-4*r)) = 1.4360944969025357119535113523184471047971386419..., where r = A323777 = 0.220676041323740696312822269998050167187681031... is the root of the equation (1-2*r)^(3-4*r) = (1-r)^(2-2*r) * r^(1-2*r). - Vaclav Kotesovec, Mar 03 2014
MATHEMATICA
Table[Sum[Binomial[(n-k)^2, n*k-k^2], {k, 0, Floor[n/2]}], {n, 0, 20}] (* Vaclav Kotesovec, Mar 03 2014 *)
PROG
(PARI) {a(n)=sum(k=0, n\2, binomial((n-k)^2, n*k-k^2))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A163855 A268299 A041291 * A054919 A119157 A079701
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 06 2012
EXTENSIONS
Name corrected by Vaclav Kotesovec, Mar 03 2014
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)