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!)
A297191 Irregular triangle read by rows formed by taking every other row of the Delannoy array (A008288) regarded as a triangle. 3

%I #16 May 26 2021 02:16:54

%S 1,1,3,1,1,7,13,7,1,1,11,41,63,41,11,1,1,15,85,231,321,231,85,15,1,1,

%T 19,145,575,1289,1683,1289,575,145,19,1,1,23,221,1159,3649,7183,8989,

%U 7183,3649,1159,221,23,1,1,27,313,2047,8361,22363,40081,48639,40081

%N Irregular triangle read by rows formed by taking every other row of the Delannoy array (A008288) regarded as a triangle.

%H Rémy Sigrist, <a href="/A297191/b297191.txt">Rows n = 0..100 of triangle, flattened</a>

%H Rémy Sigrist, <a href="/A297191/a297191.gp.txt">PARI program for A297191</a>

%F From _G. C. Greubel_, May 25 2021: (Start)

%F T(n, k) = (-1)^k*hypergeometric2F1([-2*n+k, k+1], [1], 2) for 0 <= k <= 2*n.

%F T(n, k) = A008288(2*n, k).

%F Sum_{k=0..2*n} T(n,k) = A000129(2*n+1). (End)

%e The Delannoy triangle (A008288) begins:

%e 1;

%e 1, 1;

%e 1, 3, 1;

%e 1, 5, 5, 1;

%e 1, 7, 13, 7, 1;

%e 1, 9, 25, 25, 9, 1;

%e 1, 11, 41, 63, 41, 11, 1;

%e 1, 13, 61, 129, 129, 61, 13, 1;

%e 1, 15, 85, 231, 321, 231, 85, 15, 1;

%e 1, 17, 113, 377, 681, 681, 377, 113, 17, 1;

%e this irregular triangle begins:

%e 1;

%e 1, 3, 1;

%e 1, 7, 13, 7, 1;

%e 1, 11, 41, 63, 41, 11, 1;

%e 1, 15, 85, 231, 321, 231, 85, 15, 1;

%e 1, 19, 145, 575, 1289, 1683, 1289, 575, 145, 19, 1;

%e ...

%t A297191[n_, k_]:= (-1)^k*Hypergeometric2F1[-2*n+k, k+1, 1, 2];

%t Table[A297191[n, k], {n,0,12}, {k,0,2*n}]//Flatten (* _G. C. Greubel_, May 25 2021 *)

%o (PARI) See Links section.

%o (Sage)

%o def A297191(n,k): return (-1)^k*hypergeometric([-2*n+k, k+1], [1], 2).simplify()

%o flatten([[A297191(n,k) for k in (0..2*n)] for n in (0..12)]) # _G. C. Greubel_, May 25 2021

%Y Cf. A000129, A008288, A297192.

%K nonn,tabf,easy

%O 0,3

%A _N. J. A. Sloane_, Jan 10 2018

%E More terms from _Rémy Sigrist_, Jan 18 2018

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 July 14 09:01 EDT 2024. Contains 374318 sequences. (Running on oeis4.)