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!)
A367755 E.g.f. satisfies A(x) = exp(x * (1 + x + x^2) * A(x^3/6)). 3
1, 1, 3, 13, 53, 301, 1951, 13203, 105673, 919873, 8472491, 86799241, 948033373, 10924180853, 135880443063, 1780842778471, 24496224075921, 357483642165313, 5454904465819603, 86909842633518373, 1453042115780967941, 25262405474642837341 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=0..n-1} (k+1) * a(floor(k/3)) * a(n-1-k) / (6^floor(k/3) * floor(k/3)! * (n-1-k)!).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=0, i-1, (j+1)*v[j\3+1]*v[i-j]/(6^(j\3)*(j\3)!*(i-1-j)!))); v;
CROSSREFS
Cf. A143567.
Sequence in context: A151209 A151210 A151211 * A121240 A065839 A066611
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 29 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 13 21:51 EDT 2024. Contains 372523 sequences. (Running on oeis4.)