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!)
A061549 Denominator of probability that there is no error when average of n numbers is computed, assuming errors of +1, -1 are possible and they each occur with p=1/4. 14

%I #38 Oct 27 2023 22:00:46

%S 1,8,128,1024,32768,262144,4194304,33554432,2147483648,17179869184,

%T 274877906944,2199023255552,70368744177664,562949953421312,

%U 9007199254740992,72057594037927936,9223372036854775808,73786976294838206464,1180591620717411303424,9444732965739290427392

%N Denominator of probability that there is no error when average of n numbers is computed, assuming errors of +1, -1 are possible and they each occur with p=1/4.

%C We observe that b(n) = log(a(n))/log(2) = A120738(n). Furthermore c(n+1) = b(n+1)-b(n) = A090739(n+1) and c(n+1)-3 = A007814(n+1) for n>=0. - _Johannes W. Meijer_, Jul 06 2009

%C Using WolframAlpha, it appears that 2*a(n) gives the coefficients of Pi in the denominators of the residues of f(z) = 2z choose z at odd negative half integers. E.g., the residues of f(z) at z = -1/2, -3/2, -5/2 are 1/(2*Pi), 1/(16*Pi), and 3/(256*Pi) respectively. - _Nicholas Juricic_, Mar 31 2022

%H Indranil Ghosh, <a href="/A061549/b061549.txt">Table of n, a(n) for n = 0..500</a>

%H Robert M. Kozelka, <a href="http://www.jstor.org/stable/2322033">Grade Point Averages and the Central Limit Theorem</a>, American Mathematical Monthly. Nov. 1979 (86:9) pp. 773-7.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/CircleLinePicking.html">Circle Line Picking</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/GammaFunction.html">Gamma Function</a>

%F a(n) = denominator of binomial(2*n-1/2, -1/2).

%F a(n) are denominators of coefficients of 1/(sqrt(1+x)-sqrt(1-x)) power series. - _Benoit Cloitre_, Mar 12 2002

%F a(n) = 16^n/A001316(n). - _Paul Barry_, Jun 29 2006

%F a(n) = denom((4*n)!/(2^(4*n)*(2*n)!^2)). - _Johannes W. Meijer_, Jul 06 2009

%F a(n) = abs(A067624(n)/A117972(n)). - _Johannes W. Meijer_, Jul 06 2009

%e For n=1, the binomial(2*n-1/2, -1/2) yields the term 3/8. The denominator of this term is 8, which is the second term of the sequence.

%p seq(denom(binomial(2*n-1/2, -1/2)), n=0..20);

%t Table[Denominator[(4*n)!/(2^(4*n)*(2*n)!^2) ], {n, 0, 19}] (* _Indranil Ghosh_, Mar 11 2017 *)

%o (Sage) # uses[A000120]

%o def a(n): return 1 << (4*n - A000120(n))

%o [a(n) for n in (0..19)] # _Peter Luschny_, Dec 02 2012

%o (PARI) for(n=0, 19, print1(denominator((4*n)!/(2^(4*n)*(2*n)!^2)),", ")) \\ _Indranil Ghosh_, Mar 11 2017

%o (Python)

%o import math

%o from fractions import gcd

%o f = math.factorial

%o def A061549(n): return (2**(4*n)*f(2*n)**2)/ gcd(f(4*n), (2**(4*n)*f(2*n)**2)) # _Indranil Ghosh_, Mar 11 2017

%Y Cf. A061548. Bisection of A046161. Appears in A162448.

%K nonn,frac,easy

%O 0,2

%A Leah Schmelzer (leah2002(AT)mit.edu), May 16 2001

%E More terms from _Asher Auel_, May 20 2001

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 23 02:23 EDT 2024. Contains 371906 sequences. (Running on oeis4.)