The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A354001 Expansion of e.g.f. exp(x^3/6 * (exp(x) - 1)). 7
1, 0, 0, 0, 4, 10, 20, 35, 616, 5124, 29520, 138765, 942700, 9369646, 91711984, 782281955, 6539493520, 62576274440, 693828386976, 7968383514969, 89851862221140, 1023732374445970, 12384993316732960, 160496534000858671, 2163244034675904664, 29653387436468336300 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = ((n-1)!/6) * Sum_{k=4..n} k/(k-3)! * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/4)} Stirling2(n-3*k,k)/(6^k * (n-3*k)!).
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x^3/6 (Exp[x]-1)], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 07 2023 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^3/6*(exp(x)-1))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!/6*sum(j=4, i, j/(j-3)!*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\4, stirling(n-3*k, k, 2)/(6^k*(n-3*k)!));
CROSSREFS
Sequence in context: A134987 A261636 A058539 * A368174 A353999 A355308
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 13 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 June 6 15:47 EDT 2024. Contains 373132 sequences. (Running on oeis4.)