login
A391544
Expansion of e.g.f. exp(g^4 - 1), where g = 1+x*g^2 is the g.f. of A000108.
3
1, 4, 44, 688, 13864, 340544, 9841216, 326498176, 12214596032, 508259328256, 23269655140096, 1161912882351104, 62816589188575744, 3654517810229321728, 227597447625495486464, 15105030195892500373504, 1064087464840967635111936, 79290918998401751752196096
OFFSET
0,2
LINKS
FORMULA
E.g.f.: B(x)^4, where B(x) is the e.g.f. of A391555.
a(n) = 2 * n! * exp(-1) * Sum_{k>=0} binomial(2*n+4*k+4,n)/((n+2*k+2) * k!) for n > 0.
MATHEMATICA
Table[Factorial[n] SeriesCoefficient[Exp[(Sum[Binomial[2 k, k]/(k+1) x^k, {k, 0, 20}])^4-1], {x, 0, n}], {n, 0, 20}] (* Vincenzo Librandi, Dec 21 2025 *)
PROG
(PARI) my(N=20, x='x+O('x^N), g=sum(k=0, N, binomial(2*k, k)/(k+1)*x^k)); Vec(serlaplace(exp(g^4-1)))
(Magma) N := 20; R<x> := PowerSeriesRing(Rationals(), 2*N); [Coefficient(Exp((&+[Binomial(2*k, k)/(k+1) * x^k : k in [0..n]])^4-1), n)*Factorial(n): n in [0..N]]; // Vincenzo Librandi, Dec 21 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 13 2025
STATUS
approved