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!)
A361568 Expansion of e.g.f. exp(x^3/6 * (1+x)^3). 2
1, 0, 0, 1, 12, 60, 130, 420, 8400, 101080, 781200, 4435200, 37714600, 607807200, 8660652000, 94007313400, 914497584000, 11566931376000, 198256136478400, 3275456501116800, 46558791351072000, 636647461257808000, 10238792220969312000, 194852563745775936000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} binomial(3*k,n-3*k)/(6^k * k!).
a(0) = 1; a(n) = ((n-1)!/6) * Sum_{k=3..n} k * binomial(3,k-3) * a(n-k)/(n-k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^3/6*(1+x)^3)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!/6*sum(j=3, i, j*binomial(3, j-3)*v[i-j+1]/(i-j)!)); v;
CROSSREFS
Cf. A361279.
Sequence in context: A120644 A099829 A099830 * A158443 A153792 A229616
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 2023
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 May 18 15:24 EDT 2024. Contains 372664 sequences. (Running on oeis4.)