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!)
A373757 Expansion of e.g.f. exp(x^3/(6 * (1 - x)^2)). 1
1, 0, 0, 1, 8, 60, 490, 4480, 45920, 524440, 6619200, 91568400, 1377884200, 22401579200, 391192401600, 7300174281400, 144938169376000, 3049711320656000, 67777255079934400, 1586172656920051200, 38984454900431040000, 1003827897443395024000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} binomial(n-k-1,n-3*k)/(6^k * k!).
a(0) = 1; a(n) = ((n-1)!/6) * Sum_{k=3..n} k * (k-2) * a(n-k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\3, binomial(n-k-1, n-3*k)/(6^k*k!));
(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*(j-2)*v[i-j+1]/(i-j)!)); v;
CROSSREFS
Sequence in context: A129331 A369146 A005990 * A160228 A274746 A366216
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 17 2024
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 July 14 09:44 EDT 2024. Contains 374318 sequences. (Running on oeis4.)