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!)
A365010 E.g.f. satisfies A(x) = 1 + x*exp(-x)*A(x)^3. 2
1, 1, 4, 39, 596, 12365, 324714, 10329655, 386190328, 16597810233, 806356830230, 43700423019011, 2613919719004692, 171053575111641157, 12156558707970920866, 932424974682447304815, 76772968644326739801584, 6754080601542663692950769 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (-k)^(n-k) * A001764(k)/(n-k)!.
MAPLE
A365010 := proc(n)
add( (-k)^(n-k)*A001764(k)/(n-k)!, k=0..n) ;
%*n! ;
end proc:
seq(A365010(n), n=0..80); # R. J. Mathar, Aug 16 2023
PROG
(PARI) a(n) = n!*sum(k=0, n, (-k)^(n-k)*binomial(3*k, k)/((2*k+1)*(n-k)!));
CROSSREFS
Sequence in context: A177775 A364981 A192935 * A024055 A361544 A178920
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 15 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 September 17 11:15 EDT 2024. Contains 375987 sequences. (Running on oeis4.)