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!)
A226391 a(n) = Sum_{k=0..n} binomial(k*n, k). 8
1, 2, 9, 103, 2073, 58481, 2101813, 91492906, 4671050401, 273437232283, 18046800575211, 1325445408799007, 107200425419863009, 9466283137384124247, 906151826270369213655, 93459630239922214535911, 10331984296666203358431361, 1218745075041575200343722415 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ binomial(n^2, n).
MATHEMATICA
Table[Sum[Binomial[k*n, k], {k, 0, n}], {n, 0, 20}]
PROG
(Maxima) A226391(n):=sum(binomial(k*n, k), k, 0, n); makelist(A226391(n), n, 0, 30); /* Martin Ettl, Jun 06 2013 */
(Magma) [(&+[Binomial(n*j, j): j in [0..n]]): n in [0..30]]; // G. C. Greubel, Aug 31 2022
(SageMath)
@CachedFunction
def A226391(n): return sum(binomial(n*j, j) for j in (0..n))
[A226391(n) for n in (0..30)] # G. C. Greubel, Aug 31 2022
CROSSREFS
Sequence in context: A369673 A041239 A098610 * A348858 A125815 A132494
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jun 06 2013
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 16 12:52 EDT 2024. Contains 371711 sequences. (Running on oeis4.)