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!)
A350595 a(n) = Sum_{k=0..2*n} (-1)^(n+k) * binomial(2*n,k)^n. 2
1, 0, 6, 1680, 5562130, 248832363780, 157933807781230404, 1459371378373349655614400, 199540356506880704345957381087490, 408278793226256174470138460253382778465100, 12605249484391847030759523774663513363531264829120276 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * A224733 = c * binomial(2*n, n)^n, where c = 0.30062580086898437298921168710510240913792796183034926496082316066508397... - Vaclav Kotesovec, Jan 15 2022
MATHEMATICA
Table[Sum[(-1)^(n+k)*Binomial[2*n, k]^n, {k, 0, 2n}], {n, 0, 10}] (* Stefano Spezia, Jan 08 2022 *)
PROG
(PARI) a(n) = sum(k=0, 2*n, (-1)^(n+k)*binomial(2*n, k)^n);
(Python)
from math import comb
def A350595(n): return sum((-1 if (n+k) % 2 else 1)*comb(2*n, k)**n for k in range(2*n+1)) # Chai Wah Wu, Jan 08 2022
CROSSREFS
Main diagonal of A350594.
Cf. A224733.
Sequence in context: A308029 A160226 A209609 * A034841 A149187 A330056
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 08 2022
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 29 08:13 EDT 2024. Contains 371265 sequences. (Running on oeis4.)