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!)
A245114 G.f. satisfies: A(x)^3 = 1 + 9*x*A(x)^5. 2

%I #9 Nov 01 2019 18:37:02

%S 1,3,36,585,10935,221697,4740120,105225318,2402040420,56029889025,

%T 1329627118248,31998624800220,779102941714461,19157195459506230,

%U 475034438632316400,11865382635213387504,298265217964573747095,7539795161286074350785,191548870595159091038640,4888023169106780049244275

%N G.f. satisfies: A(x)^3 = 1 + 9*x*A(x)^5.

%H Robert Israel, <a href="/A245114/b245114.txt">Table of n, a(n) for n = 0..696</a>

%F a(n) = 9^n * binomial((5*n - 2)/3, n) / (2*n + 1).

%F 2*a(n+3)*(n+3)*(n+2)*(n+1)*(2*n+7)=135*a(n)*(5*n+1)*(5*n+4)*(5*n+7)*(5*n+13). - _Robert Israel_, Jan 30 2018

%e G.f.: A(x) = 1 + 3*x + 36*x^2 + 585*x^3 + 10935*x^4 + 221697*x^5 +...

%e where A(x)^3 = 1 + 9*x*A(x)^5:

%e A(x)^3 = 1 + 9*x + 135*x^2 + 2430*x^3 + 48195*x^4 + 1015740*x^5 +...

%e A(x)^5 = 1 + 15*x + 270*x^2 + 5355*x^3 + 112860*x^4 + 2480058*x^5 +...

%p rec:= 2*a(n+3)*(n+3)*(n+2)*(n+1)*(2*n+7)=135*a(n)*(5*n+1)*(5*n+4)*(5*n+7)*(5*n+13):

%p f:= gfun:-rectoproc({rec,a(0)=1,a(1)=3,a(2)=36},a(n),remember):

%p map(f, [$0..30]); # _Robert Israel_, Jan 30 2018

%t nmax = 19; sol = {a[0] -> 1};

%t Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^3 - (1 + 9 x A[x]^5) + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];

%t sol /. HoldPattern[a[n_] -> k_] :> Set[a[n], k];

%t a /@ Range[0, nmax] (* _Jean-François Alcover_, Nov 01 2019 *)

%o (PARI) /* From A(x)^3 = 1 + 9*x*A(x)^5 : */

%o {a(n) = local(A=1+x);for(i=1,n,A=(1 + 9*x*A^5 +x*O(x^n))^(1/3));polcoeff(A,n)}

%o for(n=0,20,print1(a(n),", "))

%o (PARI) {a(n) = 9^n * binomial((5*n - 2)/3, n) / (2*n+1)}

%o for(n=0,20,print1(a(n),", "))

%Y Cf. A078532, A245112.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Jul 31 2014

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 April 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)