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!)
A322246 Expansion of g.f.: 1/sqrt(1 - 10*x - 11*x^2). 5
1, 5, 43, 395, 3811, 37775, 381205, 3895925, 40193395, 417697775, 4366043473, 45852847265, 483447391309, 5114115365585, 54252753665083, 576948203182475, 6148667240501395, 65651351673108575, 702154850931542305, 7520927108084780225, 80666557496061224281, 866249916689104887005, 9312623039533986068863, 100216202771039576006495, 1079454220008183284872861 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} 11^(n-k) * (-3)^k * binomial(n,k)*binomial(2*k,k).
a(n) = Sum_{k=0..n} (-1)^(n-k) * 3^k * binomial(n,k)*binomial(2*k,k).
a(n) equals the (central) coefficient of x^n in (1 + 5*x + 9*x^2)^n.
D-finite with recurrence: (11*n+11)*a(n)+(15+10*n)*a(n+1)+(-n-2)*a(n+2)=0. - Robert Israel, Dec 09 2018
a(n) ~ 11^(n + 1/2) / (2*sqrt(3*Pi*n)). - Vaclav Kotesovec, Dec 13 2018
E.g.f.: exp(5*x) * BesselI(0,6*x). - Ilya Gutkovskiy, Feb 02 2021
a(n) = 11^n*2F1([1/2, -n], [1], 12/11), where 2F1 is the hypergeometric function. - Stefano Spezia, Feb 02 2021
EXAMPLE
G.f.: A(x) = 1 + 5*x + 43*x^2 + 395*x^3 + 3811*x^4 + 37775*x^5 + 381205*x^6 + 3895925*x^7 + 40193395*x^8 + 417697775*x^9 + 4366043473*x^10 + ...
such that A(x)^2 = 1/(1 - 10*x - 11*x^2).
RELATED SERIES.
exp( Sum_{n>=1} a(n)*x^n/n ) = 1 + 5*x + 34*x^2 + 260*x^3 + 2137*x^4 + 18425*x^5 + 164395*x^6 + 1505075*x^7 + 14058979*x^8 + 133459055*x^9 + 1283753308*x^10 + ...
MAPLE
f:= gfun:-rectoproc({{(11*n+11)*a(n)+(15+10*n)*a(n+1)+(-n-2)*a(n+2), a(0) = 1, a(1) = 5}, a(n), remember):
map(f, [$0..40]); # Robert Israel, Dec 09 2018
MATHEMATICA
CoefficientList[Series[1/Sqrt[1 - 10*x - 11*x^2], {x, 0, 30}], x] (* G. C. Greubel, Dec 09 2018 *)
PROG
(PARI) /* Using generating function: */
{a(n) = polcoeff( 1/sqrt(1 - 10*x - 11*x^2 +x*O(x^n)), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* Using binomial formula: */
{a(n) = sum(k=0, n, (-1)^(n-k)*3^k*binomial(n, k)*binomial(2*k, k))}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* Using binomial formula: */
{a(n) = sum(k=0, n, 11^(n-k)*(-3)^k*binomial(n, k)*binomial(2*k, k))}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* a(n) is central coefficient in (1 + 5*x + 9*x^2)^n */
{a(n) = polcoeff( (1 + 5*x + 9*x^2 +x*O(x^n))^n, n)}
for(n=0, 30, print1(a(n), ", "))
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); Coefficients(R!( 1/Sqrt(1 - 10*x - 11*x^2) )); // G. C. Greubel, Dec 09 2018
(Sage) s=(1/sqrt(1 - 10*x - 11*x^2)).series(x, 30); s.coefficients(x, sparse=False) # G. C. Greubel, Dec 09 2018
(GAP) List([0..30], n -> Sum([0..n], k-> (-1)^(n-k)*3^k*Binomial(n, k) *Binomial(2*k, k))); # G. C. Greubel, Dec 09 2018
CROSSREFS
Cf. A322247.
Sequence in context: A269121 A326884 A241707 * A306080 A156886 A112115
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 09 2018
STATUS
approved

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 July 14 20:49 EDT 2024. Contains 374323 sequences. (Running on oeis4.)