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!)
A305323 Expansion of e.g.f. 1/(1 + log(1 + log(1 - x))). 4
1, 1, 4, 25, 211, 2238, 28560, 425808, 7261200, 139367278, 2973006344, 69775267186, 1786673529746, 49565881948204, 1480900541242572, 47407364553205448, 1618838460981098680, 58734896900587841824, 2256402484187691207152, 91499934912942249975504, 3905739517580787866827872 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ n! / (exp(2 - exp(-1)) * (1 - exp(exp(-1) - 1))^(n+1)). - Vaclav Kotesovec, May 31 2018
a(n) = Sum_{k=0..n} |Stirling1(n,k)| * A007840(k). - Seiichi Manyama, May 11 2023
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 25*x^3/3! + 211*x^4/4! + 2238*x^5/5! + 28560*x^6/6! + ...
MAPLE
S:= series(1/(1+log(1+log(1-x))), x, 31):
seq(coeff(S, x, n)*n!, n=0..30); # Robert Israel, May 31 2018
MATHEMATICA
nmax = 20; CoefficientList[Series[1/(1 + Log[1 + Log[1 - x]]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Sum[(j - 1)! Abs[StirlingS1[k, j]], {j, 1, k}] a[n - k]/k!, {k, 1, n}]; Table[n! a[n], {n, 0, 20}]
PROG
(PARI) x = 'x + O('x^30); Vec(serlaplace(1/(1 + log(1 + log(1 - x))))) \\ Michel Marcus, May 31 2018
CROSSREFS
Sequence in context: A261898 A038174 A049118 * A215094 A047733 A351767
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 30 2018
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)