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!)
A346843 E.g.f.: exp(exp(x) - 1) * (exp(x) - 1)^4 / 4!. 2
1, 15, 155, 1400, 11991, 101031, 853315, 7300260, 63641006, 567304452, 5181338526, 48538121450, 466611951261, 4603782469653, 46613101232933, 484188586821376, 5157850655391981, 56321812548867229, 630125374420189131, 7219368394888423554, 84658119388335562972 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} Stirling2(n,k) * binomial(k,4).
a(n) = Sum_{k=0..n} binomial(n,k) * Stirling2(k,4) * Bell(n-k).
a(n) = (Bell(n) - 24*Bell(n+1) + 29*Bell(n+2) - 10*Bell(n+3) + Bell(n+4))/24. - Vaclav Kotesovec, Aug 06 2021
MAPLE
b:= proc(n, m) option remember;
`if`(n=0, binomial(m, 4), m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=4..24); # Alois P. Heinz, Aug 05 2021
MATHEMATICA
nmax = 24; CoefficientList[Series[Exp[Exp[x] - 1] (Exp[x] - 1)^4/4!, {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 4] &
Table[Sum[StirlingS2[n, k] Binomial[k, 4], {k, 0, n}], {n, 4, 24}]
Table[Sum[Binomial[n, k] StirlingS2[k, 4] BellB[n - k], {k, 0, n}], {n, 4, 24}]
Table[(BellB[n] - 24*BellB[n+1] + 29*BellB[n+2] - 10*BellB[n+3] + BellB[n+4])/24, {n, 4, 24}] (* Vaclav Kotesovec, Aug 06 2021 *)
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(exp(exp(x)-1)*(exp(x)-1)^4/4!)) \\ Michel Marcus, Aug 06 2021
CROSSREFS
Sequence in context: A223995 A323971 A006096 * A341918 A099915 A110557
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 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)