A067626 a(n) = 2^(2n+1)*(2n+1)!.
2, 48, 3840, 645120, 185794560, 81749606400, 51011754393600, 42849873690624000, 46620662575398912000, 63777066403145711616000, 107145471557284795514880000, 216862434431944426122117120000
Offset: 0
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..100
- Eric Weisstein's World of Mathematics, Riemann-Siegel Functions
Crossrefs
Cf. A000165.
Programs
-
Magma
[2^(n+1)*Factorial(n+1): n in [0..30 by 2]]; // Vincenzo Librandi, Feb 07 2014
-
Maple
for n from 0 to 30 by 2 do printf(`%d,`,2^(n+1)*(n+1)!) od: # James Sellers, Feb 11 2002
-
Mathematica
Table[Abs[Im[Det[Array[KroneckerDelta[#1 + 1, #2]*I &, {4*n + 2, 4*n + 2}] + Array[KroneckerDelta[#1 - 1, #2]*#1 &, {4*n + 2, 4*n + 2}]]]], {n, 0, 20}] (* John M. Campbell, Jun 04 2011 *) Table[2^(n+1) (n+1)!,{n,0,30,2}] (* Harvey P. Dale, Feb 06 2014 *)
Formula
sqrt((1-cos(x))/2) = sum(n>=0, (-1)^n * x^(2*n+1) / a(n) ).
Sum_{n>=0} 1/a(n) = sinh(1/2) = (exp(1) - 1)/(2*exp(1/2)). - Ilya Gutkovskiy, Jun 08 2016
Extensions
More terms from James Sellers, Feb 11 2002
Comments