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!)
A151614 Row sums of A156740. 2

%I #6 Jun 19 2021 03:22:19

%S 1,2,155,9692,2511973,718800326,444293699995,322762198901872,

%T 375936459278442977,517934214393739253282,977731835276897269439162,

%U 2156693302479983573313980822,5955566258836615476254796252771,18881697488276229387856391071794848

%N Row sums of A156740.

%H G. C. Greubel, <a href="/A151614/b151614.txt">Table of n, a(n) for n = 0..225</a>

%F a(n) = Sum_{k=0..n} A156740(n, k).

%t A156740[n_, k_]:= Round[Product[Binomial[2*(n+j), 2*(k+j)]/Binomial[2*(n-k+j), 2*j], {j, 0, 7}]];

%t A151614[n_]:= A151614[n]= Sum[A156740[n,k], {k,0,n}];

%t Table[A151614[n], {n,0,30}] (* _G. C. Greubel_, Jun 19 2021 *)

%o (Sage)

%o def A156740(n, k): return round( product( binomial(2*(n+j), 2*(k+j))/binomial(2*(n-k+j), 2*j) for j in (0..7)) )

%o def A151614(n): return sum( A156740(n, k) for k in (0..n) )

%o [A151614(n) for n in (0..30)] # _G. C. Greubel_, Jun 19 2021

%Y Cf. A156740.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, May 28 2009

%E Terms a(11) onward added by _G. C. Greubel_, Jun 19 2021

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 March 28 14:13 EDT 2024. Contains 371254 sequences. (Running on oeis4.)