login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A008931
Expansion of (2/(1+sqrt(1-36*x)))^(1/3).
4
1, 3, 45, 936, 22572, 592515, 16434495, 473825700, 14058408519, 426438391743, 13164565835421, 412255067017248, 13064028812911440, 418149414542496168, 13498863325944967656, 439006511643775469856, 14369623854340007790108, 473027210589699351461700
OFFSET
0,2
LINKS
FORMULA
From Vladimir Reshetnikov, Oct 12 2016: (Start)
a(n) = 9^n*binomial(2*n + 1/3, n)/(6*n + 1).
D-finite with recurrence: n*(3*n+1)*a(n) = 6*(18*n^2-21*n+5)*a(n-1). (End)
a(n) ~ 2^(2*n-2/3)*3^(2*n-1)/(sqrt(Pi)*n^(3/2)). - Ilya Gutkovskiy, Oct 13 2016
MAPLE
seq(9^n*binomial(2*n +1/3, n)/(6*n+1), n=0..20); # G. C. Greubel, Sep 13 2019
MATHEMATICA
CoefficientList[Series[Surd[2/(1+Sqrt[1-36x]), 3], {x, 0, 20}], x] (* Harvey P. Dale, Aug 12 2016 *)
Table[9^n Binomial[2 n + 1/3, n]/(6 n + 1), {n, 0, 20}] (* Vladimir Reshetnikov, Oct 12 2016 *)
PROG
(PARI) my(x='x+O('x^20)); Vec((2/(1+sqrt(1-36*x)))^(1/3)) \\ G. C. Greubel, Apr 11 2017
(Magma) I:=[1]; [n le 1 select I[n] else 6*(5-21*(n-1)+18*(n-1)^2)*Self(n-1)/((n-1)*(3*n-2)): n in [1..20]]; // G. C. Greubel, Sep 13 2019
(Sage) [9^n*binomial(2*n +1/3, n)/(6*n+1) for n in (0..20)] # G. C. Greubel, Sep 13 2019
(GAP) a:=[1];; for n in [2..20] do a[n]:=6*(5-21*(n-1)+18*(n-1)^2)*a[n-1]/((n-1)*(3*n-2)); od; a; # G. C. Greubel, Sep 13 2019
CROSSREFS
Sequence in context: A132303 A298799 A202437 * A036278 A225149 A154289
KEYWORD
nonn
STATUS
approved