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!)
A355105 E.g.f. A(x) satisfies A(x) = 1 + 3 * x * A(log(1+x)). 2
1, 3, 18, 135, 1044, 6210, -5994, -760347, -3009960, 261689616, 1960394400, -220644396522, -1043258760828, 366570209524896, -3109452797977470, -972076070389224105, 36160406771040130320, 3274635904971823559880, -331428842765036684941320 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 3 * n * Sum_{k=0..n-1} Stirling1(n-1,k) * a(k).
a(n) = 3 * n * A355097(n-1) for n>0.
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=3*i*sum(j=0, i-1, stirling(i-1, j, 1)*v[j+1])); v;
CROSSREFS
Cf. A355097.
Sequence in context: A168072 A251733 A355103 * A095776 A114178 A005159
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 19 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 May 20 23:58 EDT 2024. Contains 372720 sequences. (Running on oeis4.)