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!)
A358013 Expansion of e.g.f. 1/(1 - x^2 * (exp(x) - 1)). 6
1, 0, 0, 6, 12, 20, 750, 5082, 23576, 453672, 5755770, 50894030, 841270452, 14694142476, 201442729670, 3552604015170, 73814245552560, 1369932831933392, 27860865121662066, 655240785723048726, 15052226249248287500, 357713461766745539700, 9416426612423343023742 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = n! * Sum_{k=3..n} 1/(k-2)! * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/3)} k! * Stirling2(n-2*k,k)/(n-2*k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x^2*(exp(x)-1))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i!*sum(j=3, i, 1/(j-2)!*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\3, k!*stirling(n-2*k, k, 2)/(n-2*k)!);
CROSSREFS
Sequence in context: A240989 A366564 A247212 * A371116 A356949 A375827
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 24 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 4 19:52 EDT 2024. Contains 375685 sequences. (Running on oeis4.)