login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A151709 Row sums of A156741. 2
1, 2, 192, 14632, 5451140, 2216555772, 2201283594512, 2563699840815752, 5239330894956743702, 12738172416005805235262, 45354957806572334315266802, 190794310975336315988205573422, 1056059186013450690759502943569093, 6805676661977149073551721890947184830
(list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A156741(n, k).
MATHEMATICA
A156741[n_, k_]:= Round[Product[Binomial[2*(n+j), 2*(k+j)]/Binomial[2*(n-k+j), 2*j], {j, 0, 8}]];
A151709[n_]:= A151709[n]= Sum[A156741[n, k], {k, 0, n}];
Table[A151709[n], {n, 0, 30}] (* G. C. Greubel, Jun 19 2021 *)
PROG
(Sage)
def A156741(n, k): return round( product( binomial(2*(n+j), 2*(k+j))/binomial(2*(n-k+j), 2*j) for j in (0..8)) )
def A151709(n): return sum( A156741(n, k) for k in (0..n) )
[A151709(n) for n in (0..30)] # G. C. Greubel, Jun 19 2021
CROSSREFS
Cf. A156741.
Sequence in context: A232822 A230228 A197249 * A265750 A174827 A260404
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 06 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 | 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 September 19 09:19 EDT 2024. Contains 376007 sequences. (Running on oeis4.)