OFFSET
0,3
COMMENTS
Also middle column of A132885.
a(n) is the k-th term of n-th row of triangle of A132885 where k = floor(n/4). - Altug Alkan, Nov 29 2015
FORMULA
a(n) = A132885(n, floor(n/4)), that is, a(n) = A132885(A054925(n+2) - 1). - Altug Alkan, Nov 29 2015
MAPLE
a := proc(n) local h; h := iquo(n, 4); binomial(n-h, h)*hypergeom([h-n/2, h-n/2+1/2], [1], 4) end: seq(round(evalf(a(n), 99)), n=0..30);
MATHEMATICA
a[n_] := With[{h = Quotient[n, 4]}, Binomial[n-h, h]*Hypergeometric2F1[h-n/2, h-(n-1)/2, 1, 4]];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Jun 18 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Sep 18 2014
STATUS
approved