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!)
A264152 a(n) = (2^floor(n+n/2)/sqrt(Pi)^mod(n+1,2))*Gamma(n+1/2)/Gamma(n/2+1). 3
1, 2, 6, 40, 210, 2016, 13860, 164736, 1351350, 18670080, 174594420, 2708858880, 28109701620, 479259648000, 5421156741000, 100069414502400, 1218404977539750, 24087296714342400, 312723944235202500, 6566957735804928000, 90252130306279441500, 2000107698962300928000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A001813(n)/A006882(n).
a(n) = A000079(n)*A006882(2*n-1)/A006882(n).
E.g.f.: 2F2(1/4,3/4;1/2,1;8*x^2) + 2*x*2F2(3/4,5/4;3/2,3/2;8*x^2). - Benedict W. J. Irwin, Aug 15 2016
a(n) ~ 2^(2*n) * n^((n-1)/2) * exp(-n/2) * (2/Pi)^((1+(-1)^n)/4). - Ilya Gutkovskiy, Aug 15 2016
MAPLE
a := n -> (2^floor(n+n/2)/sqrt(Pi)^modp(n+1, 2))*GAMMA(n+1/2)/GAMMA(n/2+1):
seq(a(n), n=0..21);
MATHEMATICA
Table[CoefficientList[Series[HypergeometricPFQ[{1/4, 3/4}, {1/2, 1}, 8 x^2] +
2 x HypergeometricPFQ[{3/4, 5/4}, {3/2, 3/2}, 8 x^2], {x, 0, 20}], x][[n]] (n - 1)!, {n, 1, 20}] (* Benedict W. J. Irwin, Aug 15 2016 *)
Table[(2^Floor[n + n/2]/Sqrt[Pi]^Mod[n + 1, 2])*Gamma[n + 1/2]/Gamma[n/2 + 1], {n, 0, 20}] (* Benedict W. J. Irwin, Aug 15 2016 *)
PROG
(Sage)
a = lambda n: (rising_factorial(1/2, n) // n.multifactorial(2)) << 2*n
[a(n) for n in (0..21)]
CROSSREFS
Sequence in context: A081096 A350971 A119692 * A333631 A337071 A354313
KEYWORD
nonn
AUTHOR
Peter Luschny, Nov 06 2015
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)