close
login
A389155
Expansion of (1/x) * Series_Reversion( x / (1 + x^2 * (1 + x)^4) ).
4
1, 0, 1, 4, 8, 24, 90, 280, 910, 3228, 11207, 38984, 139376, 501072, 1806233, 6574624, 24082670, 88550416, 327208061, 1214486460, 4523354624, 16903923496, 63371537341, 238236119220, 897912755874, 3392386854260, 12844981733755, 48735582495600
OFFSET
0,4
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(n+1,k) * binomial(4*k,n-2*k).
a(n) = (1/(n+1)) * [x^n] (1 + x^2 * (1 + x)^4)^(n+1).
D-finite with recurrence of order 16 (see link). - Robert Israel, Apr 07 2026
MATHEMATICA
Table[(1/(n+1)) Coefficient[(1+x^2*(1+x)^4)^(n+1), x, n], {n, 0, 29}] (* Vincenzo Librandi, Sep 28 2025 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1+x^2*(1+x)^4))/x)
(Magma) R<x> := PolynomialRing(Rationals()); [ (1/(n+1))*Coefficient(((1 + x^2 * (1 + x)^4)^(n+1)), n) : n in [0..30] ]; // Vincenzo Librandi, Sep 28 2025
CROSSREFS
Sequence in context: A303882 A008950 A045881 * A389423 A303989 A052578
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 25 2025
STATUS
approved