OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = numerator( (15/(15-46*n+36*n^2-8*n^3))*binomial(2*n,n)/(4^n) ).
a(n) = (-1)^n*numerator( binomial(5/2, n) ). - G. C. Greubel, Sep 24 2024
MATHEMATICA
Numerator[CoefficientList[Series[(1-x)^(5/2), {x, 0, 30}], x]] (* Harvey P. Dale, Aug 22 2011 *)
Table[(-1)^n*Numerator[Binomial[5/2, n]], {n, 0, 30}] (* G. C. Greubel, Sep 24 2024 *)
PROG
(Magma)
A161202:= func< n | -Numerator(15*(n+1)*Catalan(n)/(4^n*(2*n-1)*(2*n-3)*(2*n-5))) >;
[A161202(n): n in [0..30]]; // G. C. Greubel, Sep 24 2024
(SageMath)
def A161202(n): return (-1)^n*numerator(binomial(5/2, n))
[A161202(n) for n in range(31)] # G. C. Greubel, Sep 24 2024
CROSSREFS
KEYWORD
easy,sign,frac
AUTHOR
Johannes W. Meijer, Jun 08 2009
STATUS
approved