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!)
A351515 Expansion of e.g.f. (exp(exp(exp(exp(exp(x)-1)-1)-1)-1)-1)^2 / 2. 3
1, 15, 215, 3325, 56605, 1060780, 21772595, 486459105, 11760431325, 305942552245, 8521928511915, 253041654671949, 7977871631560394, 266128899746035160, 9363456107172891499, 346487270686107589124, 13450341325170239245308, 546470289216642540029570 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = Sum_{k=1..n-1} binomial(n-1,k) * A000357(k) * A000357(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((exp(exp(exp(exp(exp(x)-1)-1)-1)-1)-1)^2/2))
(PARI) T(n, k) = if(k==0, n<=1, sum(j=0, n, stirling(n, j, 2)*T(j, k-1)));
a(n) = sum(k=1, n-1, binomial(n-1, k)*T(k, 5)*T(n-k, 5));
CROSSREFS
Column 2 of A039813.
Sequence in context: A179091 A201340 A051826 * A081196 A020287 A152272
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 12 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 June 28 03:23 EDT 2024. Contains 373761 sequences. (Running on oeis4.)