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!)
A355104 E.g.f. A(x) satisfies A(x) = 1 + 2 * x * A(log(1+x)). 3
1, 2, 8, 36, 128, -120, -5904, 8792, 1015808, -7346016, -403678560, 9772765552, 226781102016, -17673167204576, 72041280334240, 38308664521315920, -1705420687695700992, -64315848872486436736, 11313330167773175073408, -326450445457848188386944 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2 * n * Sum_{k=0..n-1} Stirling1(n-1,k) * a(k).
a(n) = 2 * n * A355096(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]=2*i*sum(j=0, i-1, stirling(i-1, j, 1)*v[j+1])); v;
CROSSREFS
Cf. A355096.
Sequence in context: A332607 A236626 A355102 * A248861 A323677 A295501
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 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)