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!)
A126965 a(n) = (2*n)!*(2*n-1)/(2^n*n!). 2
-1, 1, 9, 75, 735, 8505, 114345, 1756755, 30405375, 585810225, 12439852425, 288735522075, 7273385294175, 197646339515625, 5763367260275625, 179518217255251875, 5948862302837829375, 208977775735174070625, 7757508341684492015625, 303429397707601987696875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
REFERENCES
V. van der Noort and N. J. A. Sloane, Paper in preparation, 2007.
LINKS
FORMULA
E.g.f.: sqrt(1-4*x)/(1-2*x).
G.f.: x - 1 + 9*x^2/(Q(0)-9*x), where Q(k)= 1 + 9*x + 2*k*(1+6*x) + 4*x*k^2 - x*(2*k+1)*(2*k+5)^2/Q(k+1); (continued fraction). - Sergei N. Gladkovskii, Apr 25 2013
a(n) = (1/sqrt(Pi)) * Numerator(Gamma((2n+3)/2) - Gamma((2n+1)/2)), for n>=0. Denominators are 2^(n+1). - Richard R. Forberg, Feb 22 2015
+(-2*n+3)*a(n) +(2*n-1)^2*a(n-1)=0. - R. J. Mathar, Jun 17 2016
MAPLE
seq( ((2*n)!*(2*n-1))/(2^n*n!), n=0..20); # G. C. Greubel, Jan 29 2020
MATHEMATICA
Table[((2n)!(2n-1))/(2^n n!), {n, 0, 20}] (* Harvey P. Dale, Jan 16 2017 *)
PROG
(PARI) vector(21, n, my(m=n-1); ((2*m)!*(2*m-1))/(2^m*m!)) \\ G. C. Greubel, Mar 19 2017
(PARI) apply( {A126965(n)=(2*n)!*(2*n-1)/(2^n*n!)}, [0..20]) \\ M. F. Hasler, Feb 27 2020
(Magma) F:=Factorial; [(F(2*n)*(2*n-1))/(2^n*F(n)): n in [0..20]]; // G. C. Greubel, Jan 29 2020
(Sage) f=factorial; [(f(2*n)*(2*n-1))/(2^n*f(n)) for n in (0..20)] # G. C. Greubel, Jan 29 2020
(GAP) F:=Factorial;; List([0..20], n-> (F(2*n)*(2*n-1))/(2^n*F(n)) ); # G. C. Greubel, Jan 29 2020
CROSSREFS
Cf. A001147.
Sequence in context: A136659 A231592 A335345 * A066222 A080254 A190916
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Mar 21 2007
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)