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!)
A336829 a(n) = Sum_{k=0..n} binomial(n+k,k)^n. 2
1, 3, 46, 9065, 25561876, 1048567813062, 632156164654144530, 5652307059542612442465921, 755658094192422806457805924637704, 1521188219372604726826961340683399629967888, 46388428590466766659538640978460161019178279424832676 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ exp(-1/8) * 2^(2*n^2) / (Pi*n)^(n/2). - Vaclav Kotesovec, Jul 10 2021
MATHEMATICA
Table[Sum[Binomial[n + k, k]^n, {k, 0, n}], {n, 0, 10}]
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+k, k)^n); \\ Michel Marcus, Aug 05 2020
(Magma) [(&+[Binomial(2*n-j, n)^n: j in [0..n]]): n in [0..20]]; // G. C. Greubel, Aug 31 2022
(SageMath)
def A336829(n): return sum(binomial(2*n-j, n)^n for j in (0..n))
[A336829(n) for n in (0..20)] # G. C. Greubel, Aug 31 2022
CROSSREFS
Sequence in context: A193420 A339177 A000576 * A260882 A128109 A159246
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 05 2020
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 23 14:32 EDT 2024. Contains 371914 sequences. (Running on oeis4.)