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
1, 2, 155, 9692, 2511973, 718800326, 444293699995, 322762198901872, 375936459278442977, 517934214393739253282, 977731835276897269439162, 2156693302479983573313980822, 5955566258836615476254796252771, 18881697488276229387856391071794848 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A156740(n, k).
MATHEMATICA
A156740[n_, k_]:= Round[Product[Binomial[2*(n+j), 2*(k+j)]/Binomial[2*(n-k+j), 2*j], {j, 0, 7}]];
A151614[n_]:= A151614[n]= Sum[A156740[n, k], {k, 0, n}];
Table[A151614[n], {n, 0, 30}] (* G. C. Greubel, Jun 19 2021 *)
PROG
(Sage)
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)) )
def A151614(n): return sum( A156740(n, k) for k in (0..n) )
[A151614(n) for n in (0..30)] # G. C. Greubel, Jun 19 2021
CROSSREFS
Cf. A156740.
Sequence in context: A157087 A332585 A000725 * A103042 A284458 A260886
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 28 2009
EXTENSIONS
Terms a(11) onward added by G. C. Greubel, Jun 19 2021
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)