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!)
A187649 Alternated cumulative sums of the central Stirling numbers of the second kind. 1
1, 0, 7, 83, 1618, 40907, 1282745, 48046535, 2093717518, 104081678237, 5813503286418, 360468997583868, 24569735593174392, 1825998838660375668, 146956989225714933732, 12732911083544911106268, 1181728606386262922675817 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Formula: a(n) = sum((-1)^(n-k)S(2k,k)),k=0..n)
MAPLE
seq(sum((-1)^(n-k)*combinat[stirling2](2*k, k), k=0..n), n=0..12);
# Alternative:
L:= [seq((-1)^n*Stirling2(2*n, n), n=0..50)]:
P:= ListTools:-PartialSums(L):
seq((-1)^(n+1)*P[n], n=1..51); # Robert Israel, Aug 25 2017
MATHEMATICA
Table[Sum[(-1)^(n-k)StirlingS2[2k, k], {k, 0, n}], {n, 0, 16}]
PROG
(Maxima) makelist(sum((-1)^(n-k)*stirling2(2*k, k), k, 0, n), n, 0, 12);
CROSSREFS
Cf. A008277 (Stirling2 triangle)
Sequence in context: A348303 A240170 A231259 * A368853 A316377 A053128
KEYWORD
nonn,easy
AUTHOR
Emanuele Munarini, Mar 12 2011
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 13 19:55 EDT 2024. Contains 372522 sequences. (Running on oeis4.)