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!)
A346844 E.g.f.: exp(exp(x) - 1) * (exp(x) - 1)^5 / 5!. 2
1, 21, 287, 3290, 34671, 350889, 3492511, 34669734, 346231886, 3497726232, 35872743270, 374387203190, 3982122624117, 43207791878715, 478532965417529, 5411213661200830, 62482405993313229, 736696756305382411, 8868148033487285103, 108969560832001750716 (list; graph; refs; listen; history; text; internal format)
OFFSET
5,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} Stirling2(n,k) * binomial(k,5).
a(n) = Sum_{k=0..n} binomial(n,k) * Stirling2(k,5) * Bell(n-k).
a(n) = (-Bell(n) + 89*Bell(n+1) - 145*Bell(n+2) + 75*Bell(n+3) - 15*Bell(n+4) + Bell(n+5))/120. - Vaclav Kotesovec, Aug 06 2021
MAPLE
b:= proc(n, m) option remember;
`if`(n=0, binomial(m, 5), m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=5..24); # Alois P. Heinz, Aug 05 2021
MATHEMATICA
nmax = 24; CoefficientList[Series[Exp[Exp[x] - 1] (Exp[x] - 1)^5/5!, {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 5] &
Table[Sum[StirlingS2[n, k] Binomial[k, 5], {k, 0, n}], {n, 5, 24}]
Table[Sum[Binomial[n, k] StirlingS2[k, 5] BellB[n - k], {k, 0, n}], {n, 5, 24}]
Table[(-BellB[n] + 89*BellB[n+1] - 145*BellB[n+2] + 75*BellB[n+3] - 15*BellB[n+4] + BellB[n+5])/120, {n, 5, 24}] (* Vaclav Kotesovec, Aug 06 2021 *)
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(exp(exp(x)-1)*(exp(x)-1)^5/5!)) \\ Michel Marcus, Aug 06 2021
CROSSREFS
Sequence in context: A028028 A296633 A025971 * A188710 A304354 A305917
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 05 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 April 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)