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!)
A355101 E.g.f. A(x) satisfies A(x) = 1 + 3 * x * A(exp(x) - 1). 2
1, 3, 18, 189, 2952, 63225, 1759374, 61261200, 2595618720, 130963993263, 7734817065600, 527276606418837, 41005535326851456, 3602215645092352314, 354438336568129922052, 38776184401330464272910, 4686507224871009709115232, 622194587177907979874119473 (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} Stirling2(n-1,k) * a(k).
a(n) = 3 * n * A355092(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, 2)*v[j+1])); v;
CROSSREFS
Cf. A355092.
Sequence in context: A141118 A033030 A279843 * A355107 A178014 A258659
KEYWORD
nonn
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 April 23 12:08 EDT 2024. Contains 371912 sequences. (Running on oeis4.)