[go: up one dir, main page]

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!)
A323209 a(n) = hypergeometric([-n, n + 1], [-n - 1], n). 1
1, 2, 13, 190, 4641, 161376, 7312789, 409186310, 27272680705, 2110472708140, 186023930383501, 18401769878685172, 2018938571514794593, 243319689384354960300, 31955654188732155634341, 4542582850906442990797126, 694922224386422689648830465 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A323206(n, n).
a(n) = Sum_{j=0..n} (binomial(2*n-j, n) - binomial(2*n-j, n+1))*n^(n-j).
a(n) = Sum_{j=0..n} binomial(n+j, n)*(1 - j/(n + 1))*n^j.
a(n) = 1 + Sum_{j=0..n-1} ((1+j)*binomial(2*n-j, n+1)/(n-j))*n^(n-j).
a(n) = (1/(2*Pi))*Integral_{x=0..4*n} (sqrt(x*(4*n-x))*x^n)/(1+(n-1)*x), n>0.
a(n) ~ (4^(n + 1)*n^(n + 1/2))/(sqrt(Pi)*(1 - 2*n)^2).
MAPLE
# The function ballot is defined in A238762.
a := n -> add(ballot(2*k, 2*n)*n^k, k=0..n):
seq(a(n), n=0..16);
MATHEMATICA
a[n_] := Hypergeometric2F1[-n, n + 1, -n - 1, n];
Table[a[n], {n, 0, 14}]
CROSSREFS
Sequence in context: A226865 A062156 A371318 * A239994 A242007 A049512
KEYWORD
nonn
AUTHOR
Peter Luschny, Feb 25 2019
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 August 30 07:09 EDT 2024. Contains 375532 sequences. (Running on oeis4.)