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!)
A322245 a(n) = A322244(n)^2, the square of the central coefficient in (1 + 3*x + 16x^2)^n. 4

%I #13 Dec 13 2018 08:43:20

%S 1,9,1681,99225,11189025,1019077929,108167974321,11137724806329,

%T 1197175570050625,129043286745662025,14139849178569444561,

%U 1560056939689534791129,173632800433761049827681,19441545948416137605093225,2189471746316530595782640625,247739375533243457859858956025,28151322919072607132343448452225,3210745922813847247161044673062025

%N a(n) = A322244(n)^2, the square of the central coefficient in (1 + 3*x + 16x^2)^n.

%C The g.f. of A322244 is 1/sqrt(1 - 6*x - 55*x^2).

%H Seiichi Manyama, <a href="/A322245/b322245.txt">Table of n, a(n) for n = 0..481</a>

%F G.f.: 1 / AGM(1 + 5*11*x, sqrt((1 - 5^2*x)*(1 - 11^2*x)) ), where AGM(x,y) = AGM((x+y)/2, sqrt(x*y)) is the arithmetic-geometric mean.

%F G.f.: 1 / AGM((1-5*x)*(1-11*x), (1+5*x)*(1+11*x)) = Sum_{n>=0} a(n)*x^(2*n).

%F a(n) = A322244(n)^2, where A322244(n) = a(n) = Sum_{k=0..n} 11^(n-k) * (-4)^k * binomial(n,k)*binomial(2*k,k).

%F a(n) ~ 11^(2*n + 1) / (16*Pi*n). - _Vaclav Kotesovec_, Dec 13 2018

%e G.f.: A(x) = 1 + 9*x + 1681*x^2 + 99225*x^3 + 11189025*x^4 + 1019077929*x^5 + 108167974321*x^6 + 11137724806329*x^7 + 1197175570050625*x^8 + ...

%e that is,

%e A(x) = 1 + 3^2*x + 41^2*x^2 + 315^2*x^3 + 3345^2*x^4 + 31923^2*x^5 + 328889^2*x^6 + 3337323^2*x^7 + 34600225^2*x^8 + ... + A322244(n)^2*x^n + ...

%t a[n_] := Sum[11^(n-k) * (-4)^k * Binomial[n,k] * Binomial[2k,k], {k, 0, n}]^2; Array[a, 20, 0] (* _Amiram Eldar_, Dec 13 2018 *)

%o (PARI) /* a(n) = A322244(n)^2 - g.f. */

%o {a(n)=polcoeff(1/sqrt(1 - 6*x - 55*x^2 +x*O(x^n)), n)^2}

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

%o (PARI) /* a(n) = A322244(n)^2 - binomial sum */

%o {a(n) = sum(k=0,n, 11^(n-k)*(-4)^k*binomial(n,k)*binomial(2*k,k))^2}

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

%o (PARI) /* Using AGM: */

%o {a(n)=polcoeff( 1 / agm(1 + 5*11*x, sqrt((1 - 5^2*x)*(1 - 11^2*x) +x*O(x^n))), n)}

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

%Y Cf. A322244.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Dec 09 2018

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 13 07:30 EDT 2024. Contains 375113 sequences. (Running on oeis4.)