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”).

A307695
Expansion of 1/(sqrt(1-4*x)*sqrt(1-16*x)).
3
1, 10, 118, 1540, 21286, 304300, 4443580, 65830600, 985483270, 14869654300, 225759595348, 3444812388280, 52781007848284, 811510465220920, 12513859077134008, 193460383702061200, 2997463389599395270, 46532910920993515900, 723626591914643806180, 11270311875128088314200
OFFSET
0,2
COMMENTS
Let 1/(sqrt(1-c*x)*sqrt(1-d*x)) = Sum_{k>=0} b(k)*x^k.
b(n) = Sum_{k=0..n} c^(n-k) * e^k * binomial(n,k) * binomial(2*k,k) = Sum_{k=0..n} d^(n-k) * (-e)^k * binomial(n,k) * binomial(2*k,k), where e = (d-c)/4.
n*b(n) = (c+d)/2 * (2*n-1) * b(n-1) - c * d * (n-1) * b(n-2) for n > 1.
LINKS
FORMULA
a(n) = Sum_{k=0..n} 4^(n-k)*3^k*binomial(n,k)*binomial(2k,k).
a(n) = Sum_{k=0..n} 16^(n-k)*(-3)^k*binomial(n,k)*binomial(2k,k).
D-finite with recurrence: n*a(n) = 10*(2*n-1)*a(n-1) - 64*(n-1)*a(n-2) for n > 1.
a(n) ~ 2^(4*n+1) / sqrt(3*Pi*n). - Vaclav Kotesovec, Apr 30 2019
MATHEMATICA
a[n_] := Sum[4^(n-k) * 3^k * Binomial[n, k] * Binomial[2*k, k], {k, 0, n}]; Array[a, 20, 0] // Flatten (* Amiram Eldar, May 13 2021 *)
PROG
(PARI) N=66; x='x+O('x^N); Vec(1/sqrt(1-20*x+64*x^2))
(PARI) {a(n) = sum(k=0, n, 4^(n-k)*3^k*binomial(n, k)*binomial(2*k, k))}
(PARI) {a(n) = sum(k=0, n, 16^(n-k)*(-3)^k*binomial(n, k)*binomial(2*k, k))}
CROSSREFS
Cf. A000984 (c=0,d=4,e=1), A026375 (c=1,d=5,e=1), A081671 (c=2,d=6,e=1), A098409 (c=3,d=7,e=1), A098410 (c=4,d=8,e=1), A104454 (c=5,d=9,e=1).
Cf. A084605 (c=-3,d=5,e=2), A098453 (c=-2,d=6,e=2), A322242 (c=-1,d=7,e=2), A084771 (c=1,d=9,e=2), A248168 (c=3,d=11,e=2).
Cf. A322246 (c=-1,d=11,e=3), this sequence (c=4,d=16,e=3).
Cf. A322244 (c=-5,d=11,e=4), A322248 (c=-3,d=13,e=4).
Sequence in context: A309582 A367779 A155622 * A218501 A293987 A122887
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 22 2019
STATUS
approved