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!)
A355719 Expansion of e.g.f. exp( x/(1 - log(1+x)) ). 2
1, 1, 3, 10, 45, 231, 1405, 9472, 72177, 596845, 5442631, 53052726, 561826309, 6286949787, 75704999721, 954108249676, 12862823623393, 179921659771257, 2683989118991467, 41178997678745506, 673670267643931581, 11223738258484213519, 200027545794685345749 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(43) is negative. - Vaclav Kotesovec, Jul 15 2022
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A108125(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x/(1-log(1+x)))))
(PARI) a006252(n) = sum(k=0, n, k!*stirling(n, k, 1));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, j*a006252(j-1)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A346066 A211193 A134018 * A028417 A060311 A184947
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 15 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 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)