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!)
A277374 a(n) = 2^n*floor(n/2)!*Gamma(ceiling((n+1)/2),-1/4)*exp(-1/4). 2
1, 2, 3, 6, 50, 100, 1794, 3588, 114840, 229680, 11483880, 22967760, 1653679440, 3307358880, 324121165200, 648242330400, 82975018331520, 165950036663040, 26883905939049600, 53767811878099200, 10753562375623468800, 21507124751246937600, 5204724189801718982400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ Pi*exp(-1/4-n)*n^(n+1) if n is even, a(n) ~ 2*Pi*exp(3/4-n)*(n-1)^n if n is odd. - Vladimir Reshetnikov, Oct 19 2016
MAPLE
a := n -> 2^n*floor(n/2)!*GAMMA(ceil((n+1)/2), -1/4)*exp(-1/4):
seq(simplify(a(n)), n=0..22);
MATHEMATICA
a[n_] := 2^n Floor[n/2]! Gamma[Ceiling[(1 + n)/2], -1/4] Exp[-1/4];
FunctionExpand@Table[a[n], {n, 0, 22}]
PROG
(PARI) for(n=0, 20, print1(round(2^n*(floor(n/2))!*exp(-1/4)* incgam(ceil((n +1)/2), -1/4)), ", ")) \\ G. C. Greubel, May 16 2018
CROSSREFS
a(n) * A056040(n) = A277393(n).
Sequence in context: A018372 A097350 A323721 * A062309 A018390 A307104
KEYWORD
nonn
AUTHOR
Peter Luschny, Oct 17 2016
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 30 12:41 EDT 2024. Contains 374743 sequences. (Running on oeis4.)