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!)
A216357 Expansion of 1/( (1-16*x)*(1+4*x)^2 )^(1/4). 3

%I #18 Sep 16 2022 08:59:24

%S 1,2,38,404,5510,74492,1048924,15004776,217943238,3200089580,

%T 47405806708,707305846936,10616181542044,160142807848792,

%U 2426097698458360,36890818642990544,562772826273060678,8609639617006367052,132048790603779592196,2029851945081220214200

%N Expansion of 1/( (1-16*x)*(1+4*x)^2 )^(1/4).

%H Robert Israel, <a href="/A216357/b216357.txt">Table of n, a(n) for n = 0..830</a>

%F G.f.: exp(Sum_{n>=1} A070775(n)*x^n/n) where A070775(n) = Sum_{k=0..n} binomial(4*n,4*k).

%F a(n) ~ GAMMA(3/4) * 2^(4*n+1/2) / (Pi* sqrt(5) * n^(3/4)). - _Vaclav Kotesovec_, Jul 31 2014

%F a(n) = ((64*n-80)*a(n-2)+(12*n-10)*a(n-1))/n. - _Robert Israel_, Dec 09 2016

%e G.f.: A(x) = 1 + 2*x + 38*x^2 + 404*x^3 + 5510*x^4 + 74492*x^5 + 1048924*x^6 + ...

%e where 1/A(x)^4 = 1 - 8*x - 112*x^2 - 256*x^3.

%e The logarithm of the g.f. begins:

%e log(A(x)) = x + 2*x^2/2 + 72*x^3/3 + 992*x^4/4 + 16512*x^5/5 + 261632*x^6/6 + 4196352*x^7/7 + ... + A070775(n)*x^n/n + ...

%p f:= gfun:-rectoproc({(48+64*n)*a(n)+(14+12*n)*a(n+1)+(-n-2)*a(n+2), a(0) = 1, a(1) = 2}, a(n), remember):

%p map(f, [$0..30]); # _Robert Israel_, Dec 09 2016

%t a = DifferenceRoot[Function[{a, n}, {(48+64n) a[n] + (14+12n) a[1+n] + (-2-n) a[2+n] == 0, a[0] == 1, a[1] == 2}]];

%t Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Sep 16 2022, after _Robert Israel_ *)

%o (PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, sum(j=0, m, binomial(4*m, 4*j))*x^m/m+x*O(x^n)))); polcoeff(A, n)}

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

%Y Cf. A070775, A216316, A216358.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Sep 04 2012

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 August 26 09:55 EDT 2024. Contains 375455 sequences. (Running on oeis4.)