VOOZH
about
URL: https://oeis.org/A383937
⇱ A383937 - OEIS
login
A383937
Expansion of 1 / ( (1-3*x) * (1-6*x) )^(2/3).
2
1, 6, 33, 180, 990, 5508, 30978, 175824, 1005345, 5782590, 33418737, 193876092, 1128297276, 6583492080, 38498441400, 225550220544, 1323563204394, 7777806812892, 45762197971050, 269545947941160, 1589219394582996, 9378142402189176, 55385341859409948
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
0,2
LINKS
Vincenzo Librandi,
Table of n, a(n) for n = 0..1000
FORMULA
G.f.: B(x)^(2/3), where B(x) is the g.f. of
A016137
.
a(n) = (-3)^n * Sum_{k=0..n} 2^k * binomial(-2/3,k) * binomial(-2/3,n-k).
a(n) ~ Gamma(1/3) * 2^(n - 1/3) * 3^(n + 1/2) / (Pi * n^(1/3)). -
Vaclav Kotesovec
, Aug 18 2025
D-finite with recurrence n*a(n) +3*(-3*n+1)*a(n-1) +6*(3*n-2)*a(n-2)=0. -
R. J. Mathar
, Aug 26 2025
MATHEMATICA
CoefficientList[Series[1/((1-3*x)*(1-6*x))^(2/3), {x, 0, 33}], x] (*
Vincenzo Librandi
, Aug 28 2025 *)
PROG
(PARI) a(n) = (-3)^n*sum(k=0, n, 2^k*binomial(-2/3, k)*binomial(-2/3, n-k));
(Magma) R<x> := PowerSeriesRing(Rationals(), 34); f := 1 / ( (1-3*x) * (1-6*x) )^(2/3); coeffs := [ Coefficient(f, n) : n in [0..33] ]; coeffs; //
Vincenzo Librandi
, Aug 28 2025
CROSSREFS
Cf.
A016137
,
A383935
.
Sequence in context:
A137627
A138395
A050151
*
A009162
A012718
A297221
Adjacent sequences:
A383934
A383935
A383936
*
A383938
A383939
A383940
KEYWORD
nonn
,
easy
AUTHOR
Seiichi Manyama
, Aug 18 2025
STATUS
approved