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!)
A187654 Binomial cumulative sums of the (signless) central Stirling numbers of the first kind (A187646). 1
1, 2, 14, 262, 7740, 305536, 15061692, 890220752, 61347750704, 4829414749504, 427559293150976, 42047904926171552, 4547772798257998256, 536504774914535869664, 68557641564333466819744, 9433619169586732241895776 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k)*s(2k,k).
a(n) ~ exp((2*c-1)/(8*c^2)) * abs(Stirling1(2*n,n)) ~ 2^(3*n-1) * n^n * exp((2*c-1)/(8*c^2)-n) * c^(2*n) / (sqrt(Pi*n*(c-1)) * (2*c-1)^n), where c = -LambertW(-1,-exp(-1/2)/2) = 1.7564312086261696769827376166... - Vaclav Kotesovec, May 21 2014
MAPLE
seq(sum(binomial(n, k)*abs(combinat[stirling1](2*k, k)), k=0..n), n=0..12);
MATHEMATICA
Table[Sum[Binomial[n, k]Abs[StirlingS1[2k, k]], {k, 0, n}], {n, 0, 15}]
PROG
(Maxima) makelist(sum(binomial(n, k)*abs(stirling1(2*k, k)), k, 0, n), n, 0, 12);
(PARI) a(n) = sum(k=0, n, binomial(n, k)*abs(stirling(2*k, k, 1))); \\ Michel Marcus, Aug 03 2021
CROSSREFS
Cf. A187646.
Sequence in context: A070813 A156214 A370490 * A280517 A354511 A015197
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 April 18 09:47 EDT 2024. Contains 371779 sequences. (Running on oeis4.)