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!)
A295612 a(n) = Sum_{k=0..n} binomial(n+k,k)^k. 2
1, 3, 40, 8105, 24053106, 1016507243472, 622366942086680904, 5608321882919220905812521, 752711651805019773658037206391596, 1518219710649896586598445898967340890577318, 46343146356260529633020448755386347142785083052620084 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Binomial Sums
FORMULA
a(n) = Sum_{k=0..n} A046899(n,k)^k.
a(n) ~ 2^(2*n^2) / (exp(1/8) * Pi^(n/2) * n^(n/2)). - Vaclav Kotesovec, Nov 25 2017
MATHEMATICA
Table[Sum[Binomial[n + k, k]^k, {k, 0, n}], {n, 0, 10}]
Table[Sum[((n + k)!/(n! k!))^k, {k, 0, n}], {n, 0, 10}]
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+k, k)^k); \\ Michel Marcus, Nov 25 2017
CROSSREFS
Sequence in context: A094330 A110468 A327356 * A350545 A286661 A171058
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 24 2017
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)