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!)
A346754 Expansion of e.g.f. -log( 1 - x^3 * exp(x) / 3! ). 4
0, 0, 0, 1, 4, 10, 30, 175, 1176, 7364, 50520, 425205, 4010380, 39433966, 414654604, 4793188855, 59834495280, 789420239560, 11016095913456, 163423065359529, 2565467553034740, 42320595474149650, 732058678770177220, 13275485607004016011 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 0; a(n) = binomial(n,3) + (1/n) * Sum_{k=1..n-1} binomial(n,k) * binomial(n-k,3) * k * a(k).
a(n) ~ (n-1)! / (3*LambertW(2^(1/3)/3^(2/3)))^n. - Vaclav Kotesovec, Aug 08 2021
a(n) = n! * Sum_{k=1..floor(n/3)} k^(n-3*k-1)/(6^k * (n-3*k)!). - Seiichi Manyama, Dec 14 2023
MATHEMATICA
nmax = 23; CoefficientList[Series[-Log[1 - x^3 Exp[x]/3!], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 0; a[n_] := a[n] = Binomial[n, 3] + (1/n) Sum[Binomial[n, k] Binomial[n - k, 3] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A363509 A067142 A145453 * A333916 A264564 A304963
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 01 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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)