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!)
A355123 E.g.f. A(x) satisfies A(x) = 1 + (1 - exp(-x)) * A(2 * (1 - exp(-x))). 2
1, 1, 3, 25, 611, 41721, 7326115, 3120454233, 3105527125475, 7041597540281017, 35733375744777784867, 400526056950063657595929, 9816824637930442994222501475, 521959475771315485798501882623609, 59814953381855591853355367174623538851 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f. A(x) satisfies: A(-log(1-x)) = 1 + x*A(2*x).
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(n-k) * k * 2^(k-1) * Stirling2(n,k) * a(k-1).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^(i-j)*j*2^(j-1)*stirling(i, j, 2)*v[j])); v;
CROSSREFS
Sequence in context: A213599 A179473 A248417 * A306795 A131310 A362657
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 20 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 4 13:44 EDT 2024. Contains 374923 sequences. (Running on oeis4.)