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!)
A351525 Expansion of e.g.f. (log(1 + log(1 + log(1+ x))))^2 / 2. 2
1, -9, 87, -975, 12657, -188090, 3159699, -59326371, 1232843529, -28116615263, 698649506871, -18796044698977, 544507930693022, -16903759793180115, 559960766050363931, -19719027513960290370, 735696883534117583082, -28991986984973263419262 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = (-1)^n * Sum_{k=1..n-1} binomial(n-1,k) * A000268(k) * A000268(n-k).
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Log[1+Log[1+Log[1+x]]]^2/2, {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jan 15 2024 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(log(1+log(1+log(1+x)))^2/2))
(PARI) T(n, k) = if(k==0, n==1, sum(j=0, n, abs(stirling(n, j, 1))*T(j, k-1)));
a(n) = (-1)^n*sum(k=1, n-1, binomial(n-1, k)*T(k, 3)*T(n-k, 3));
CROSSREFS
Column 2 of A039815.
Sequence in context: A267265 A152264 A035101 * A245491 A160466 A362509
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 13 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 18 02:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)