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!)
A246257 Triangular array read by rows: T(n, k) = S(n, [n/2]-k) and S(n,k) = C(n, 2*k)*(2*k-1)!!*((2*k-1)!! + 1)/2, n>=0, 0<=k<=[n/2]. 1
1, 1, 1, 1, 3, 1, 6, 6, 1, 30, 10, 1, 120, 90, 15, 1, 840, 210, 21, 1, 5565, 3360, 420, 28, 1, 50085, 10080, 756, 36, 1, 446985, 250425, 25200, 1260, 45, 1, 4916835, 918225, 55440, 1980, 55, 1, 54033210, 29501010, 2754675, 110880, 2970, 66, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
T(n, k) = (n!/(j!*(n-2*j)!))*(2^(-j-1)+Gamma(j+1/2)/sqrt(4*Pi)) where j = floor(n/2) - k.
EXAMPLE
Triangle starts:
[ 0] 1,
[ 1] 1,
[ 2] 1, 1,
[ 3] 3, 1,
[ 4] 6, 6, 1,
[ 5] 30, 10, 1,
[ 6] 120, 90, 15, 1,
[ 7] 840, 210, 21, 1,
[ 8] 5565, 3360, 420, 28, 1,
[ 9] 50085, 10080, 756, 36, 1,
[10] 446985, 250425, 25200, 1260, 45, 1.
MAPLE
T := proc(n, k) local j; j := iquo(n, 2) - k;
(n!/(j!*(n-2*j)!))*(2^(-j-1)+GAMMA(j+1/2)/sqrt(4*Pi)) end:
seq(print(seq(T(n, k), k=0..iquo(n, 2))), n=0..10);
MATHEMATICA
row[n_] := FunctionExpand[HypergeometricPFQ[{-n/2, (1-n)/2}, {}, 2z] + HypergeometricPFQ[{1/2, -n/2, (1-n)/2}, {}, 4z]]/2 // CoefficientList[#, z]& // Reverse;
Table[row[n], {n, 0, 12}] // Flatten (* Jean-François Alcover, Aug 02 2019 *)
PROG
(Sage)
from sage.functions.hypergeometric import closed_form
def A246257_row(n):
R.<z> = ZZ[]
h = hypergeometric([-n/2, (1-n)/2], [], 2*z)
g = hypergeometric([1/2, -n/2, (1-n)/2], [], 4*z)
T = R(((closed_form(h)+closed_form(g))/2)).coefficients()
return T[::-1]
for n in range(13): A246257_row(n)
CROSSREFS
Cf. A002771 (row sums), A246256, A096713.
Sequence in context: A210287 A116412 A089511 * A210744 A242729 A112692
KEYWORD
tabf,nonn
AUTHOR
Peter Luschny, Aug 21 2014
STATUS
approved

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 14:49 EDT 2024. Contains 371914 sequences. (Running on oeis4.)