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!)
A351514 Expansion of e.g.f. (exp(exp(exp(exp(x)-1)-1)-1)-1)^2 / 2. 3
1, 12, 136, 1650, 21904, 318521, 5051988, 86910426, 1612648066, 32107793135, 682724688430, 15439016490989, 369914992674530, 9359103270641290, 249292192469843244, 6971850327184526783, 204215496402215939638, 6251233458455082035922 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = Sum_{k=1..n-1} binomial(n-1,k) * A000307(k) * A000307(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((exp(exp(exp(exp(x)-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, 4)*T(n-k, 4));
CROSSREFS
Column 2 of A039812.
Sequence in context: A194013 A189501 A373107 * A216081 A264503 A000467
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:42 EDT 2024. Contains 373761 sequences. (Running on oeis4.)