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!)
A125103 Triangle read by rows: T(n,k) = binomial(n,k) + 2^k*binomial(n,k+1) (0 <= k <= n). 2

%I #16 Nov 30 2019 15:24:28

%S 1,2,1,3,4,1,4,9,7,1,5,16,22,12,1,6,25,50,50,21,1,7,36,95,140,111,38,

%T 1,8,49,161,315,371,245,71,1,9,64,252,616,966,952,540,136,1,10,81,372,

%U 1092,2142,2814,2388,1188,265,1,11,100,525,1800,4242,6972,7890,5880,2605,522,1

%N Triangle read by rows: T(n,k) = binomial(n,k) + 2^k*binomial(n,k+1) (0 <= k <= n).

%C Row sums = A094374: (1, 3, 8, 21, 56, ...).

%C Binomial transform of the infinite bidiagonal matrix with (1,1,1,...) in the main diagonal and (1,2,4,8,...) in the subdiagonal.

%H Harvey P. Dale, <a href="/A125103/b125103.txt">Table of n, a(n) for n = 0..1000</a>

%e First few rows of the triangle are

%e 1;

%e 2, 1;

%e 3, 4, 1;

%e 4, 9, 7, 1;

%e 5, 16, 22, 12, 1;

%e 6, 25, 50, 50, 21, 1;

%e 7, 36, 95, 140, 111, 38, 1;

%e ...

%p T:=(n,k)->binomial(n,k)+2^k*binomial(n,k+1): for n from 0 to 11 do seq(T(n,k),k=0..n) od; # yields sequence in triangular form

%t Table[Binomial[n,k]+2^k Binomial[n,k+1],{n,0,10},{k,0,n}]//Flatten (* _Harvey P. Dale_, Nov 30 2019 *)

%o (PARI) T(n,k) = binomial(n,k) + 2^k*binomial(n,k+1);

%o matrix(11, 11, n, k, T(n-1,k-1)) \\ _Michel Marcus_, Nov 09 2019

%Y Cf. A094374.

%K nonn,tabl

%O 0,2

%A _Gary W. Adamson_, Nov 20 2006

%E Edited by _N. J. A. Sloane_, Nov 29 2006

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