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!)
A355163 a(n) = exp(-1) * Sum_{k>=0} (4*k + 3)^n / k!. 2
1, 7, 65, 743, 9921, 150151, 2526593, 46615783, 933072513, 20093861895, 462440842177, 11310514854375, 292627518129985, 7976748158144647, 228308400790500097, 6840702405678586343, 214000748166439723265, 6973447420429351808007, 236204029044752265931585, 8300724166287243795922151 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(exp(4*x) + 3 x - 1).
a(0) = 1; a(n) = 3 * a(n-1) + Sum_{k=1..n} binomial(n-1,k-1) * 4^k * a(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * 3^(n-k) * 4^k * Bell(k).
a(n) ~ Bell(n) * (4 + 3*LambertW(n)/n)^n. - Vaclav Kotesovec, Jun 22 2022
a(n) ~ 4^n * n^(n + 3/4) * exp(n/LambertW(n) - n - 1) / (sqrt(1 + LambertW(n)) * LambertW(n)^(n + 3/4)). - Vaclav Kotesovec, Jun 27 2022
MATHEMATICA
nmax = 19; CoefficientList[Series[Exp[Exp[4 x] + 3 x - 1], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = 3 a[n - 1] + Sum[Binomial[n - 1, k - 1] 4^k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 19}]
Table[Sum[Binomial[n, k] 3^(n - k) 4^k BellB[k], {k, 0, n}], {n, 0, 19}]
CROSSREFS
Sequence in context: A099342 A051550 A371393 * A300488 A085283 A069015
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 22 2022
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 September 7 16:40 EDT 2024. Contains 375749 sequences. (Running on oeis4.)