login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A378071
a(n) = denominator((4^(2*n+1)*n!^2)/((2*n+3)*(2*n)!)).
1
3, 5, 21, 45, 385, 819, 3465, 7293, 122265, 255255, 1062347, 2204475, 18253053, 37702175, 155451825, 319929885, 10518906825, 21585857535, 88482569175, 181144476975, 1481850184815, 3027700543725, 12361581411855, 25214881603275, 411156946959525, 837470267650107
OFFSET
0,1
MAPLE
a := n -> (4^(2*n+1)*n!^2)/((2*n+3)*(2*n)!); seq(denom(a(n)), n = 0..25);
MATHEMATICA
Table[Denominator[(4^(2*n + 1)*n!^2)/((2*n + 3)*(2*n)!)], {n, 0, 25}] (* Michael De Vlieger, Dec 05 2024 *)
PROG
(PARI) a(n) = denominator((4^(2*n+1)*n!^2)/((2*n+3)*(2*n)!)); \\ Michel Marcus, Dec 05 2024
CROSSREFS
Cf. A102557 (numerator).
Sequence in context: A319488 A110026 A235136 * A153862 A266203 A264683
KEYWORD
nonn,frac,new
AUTHOR
Peter Luschny, Dec 05 2024
STATUS
approved