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!)
A354574 E.g.f. A(x) satisfies A(x) = 1 + x * A(1 - exp(-x)). 4
1, 1, 2, 3, -8, -65, 366, 4284, -71392, -377919, 28218760, -249587877, -14356069056, 587285561746, 153563287892, -954498079774950, 39921820513516256, 533333406684245239, -158979463609003391970, 8008135971419079188618, 190727236066813163686860 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = n * Sum_{k=0..n-1} (-1)^(n-k-1) * Stirling2(n-1,k) * a(k).
a(n) = n * A353177(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]=i*sum(j=0, i-1, (-1)^(i-j-1)*stirling(i-1, j, 2)*v[j+1])); v;
CROSSREFS
Sequence in context: A351658 A003096 A333077 * A042815 A191353 A319218
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 04 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 August 17 10:40 EDT 2024. Contains 375209 sequences. (Running on oeis4.)