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!)
A343841 a(n) = Sum{k=0..n} (-1)^(n-k)*binomial(n, k)*Stirling2(n, k). 2
1, 1, -1, -5, 15, 56, -455, -237, 16947, -64220, -529494, 6833608, -8606015, -459331677, 4335744673, 6800310151, -518075832085, 4315086396640, 19931595013738, -812870258798156, 6648395876520816, 46852711038750520, -1752440325584024944, 15485712825845269456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
a := n -> add((-1)^(n-k)*binomial(n, k)*Stirling2(n, k), k=0..n):
seq(a(n), n = 0..24);
MATHEMATICA
a[n_] := Sum[(-1)^(n - k) * Binomial[n, k] * StirlingS2[n, k], {k, 0, n}]; Array[a, 24, 0] (* Amiram Eldar, May 07 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*binomial(n, k)*stirling(n, k, 2)); \\ Michel Marcus, May 07 2021
CROSSREFS
Sequence in context: A165731 A309117 A307349 * A203294 A149589 A110614
KEYWORD
sign
AUTHOR
Peter Luschny, May 04 2021
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.)