The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A363401 a(n) = Sum_{k=0..n} 2^(n - k) * Sum_{j=0..k} binomial(k, j) * ((2 - (n mod 2)) * j + 1)^n. Row sums of A363400. 1
1, 5, 68, 302, 33104, 64272, 43575104, 30313712, 111402371328, 25258008320, 468857355838464, 32779942009344, 2941165554120118272, 61149815860711424, 25734702989598729256960, 155090406558662064128, 299529317622247725531725824, 513370937392454603833344 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ sqrt(1 + LambertW(exp(-1))) * (2-mod(n,2))^n * n^n / ((1 - LambertW(exp(-1))) * exp(n) * LambertW(exp(-1))^(n + 1/(2-mod(n,2)))). - Vaclav Kotesovec, Jun 02 2023
MAPLE
a := n -> add(add(binomial(k, j) * ((2 - irem(n, 2)) * j + 1)^n, j = 0..k) * 2^(n - k), k = 0..n): seq(a(n), n = 0..17);
MATHEMATICA
Table[Sum[2^(n-k) * Sum[Binomial[k, j]*((2 - Mod[n, 2])*j + 1)^n, {j, 0, k}], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jun 02 2023 *)
CROSSREFS
Cf. A363400.
Sequence in context: A252794 A328359 A003361 * A336433 A099334 A281558
KEYWORD
nonn
AUTHOR
Peter Luschny, Jun 02 2023
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 May 17 07:44 EDT 2024. Contains 372579 sequences. (Running on oeis4.)