OFFSET
0,2
COMMENTS
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
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
LINKS
Indranil Ghosh, Table of n, a(n) for n = 0..500
Robert M. Kozelka, Grade Point Averages and the Central Limit Theorem, American Mathematical Monthly. Nov. 1979 (86:9) pp. 773-7.
Eric Weisstein's World of Mathematics, Circle Line Picking
Eric Weisstein's World of Mathematics, Gamma Function
FORMULA
a(n) = denominator of binomial(2*n-1/2, -1/2).
a(n) are denominators of coefficients of 1/(sqrt(1+x)-sqrt(1-x)) power series. - Benoit Cloitre, Mar 12 2002
a(n) = 16^n/A001316(n). - Paul Barry, Jun 29 2006
a(n) = denom((4*n)!/(2^(4*n)*(2*n)!^2)). - Johannes W. Meijer, Jul 06 2009
EXAMPLE
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.
MAPLE
seq(denom(binomial(2*n-1/2, -1/2)), n=0..20);
MATHEMATICA
Table[Denominator[(4*n)!/(2^(4*n)*(2*n)!^2) ], {n, 0, 20}] (* Indranil Ghosh, Mar 11 2017 *)
PROG
(Sage) # uses[A000120]
def a(n): return 1 << (4*n - A000120(n))
[a(n) for n in (0..19)] # Peter Luschny, Dec 02 2012
(PARI) for(n=0, 20, print1(denominator((4*n)!/(2^(4*n)*(2*n)!^2)), ", ")) \\ Indranil Ghosh, Mar 11 2017
(Python)
import math
from fractions import gcd
f = math.factorial
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
(Magma)
A061549:= func< n | 2^(4*n-(&+Intseq(2*n, 2))) >;
[A061549(n): n in [0..30]]; // G. C. Greubel, Oct 20 2024
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
Leah Schmelzer (leah2002(AT)mit.edu), May 16 2001
EXTENSIONS
More terms from Asher Auel, May 20 2001
STATUS
approved