cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A322246 Expansion of g.f. 1/sqrt(1 - 10*x - 11*x^2).

Original entry on oeis.org

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
Offset: 0

Views

Author

Paul D. Hanna, Dec 09 2018

Keywords

Examples

			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 + ...
		

Crossrefs

Programs

  • 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
  • Magma
    m:=30; R:=PowerSeriesRing(Rationals(), m); Coefficients(R!( 1/Sqrt(1 - 10*x - 11*x^2) )); // G. C. Greubel, Dec 09 2018
    
  • 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 *)
  • 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),", "))
    
  • Sage
    s=(1/sqrt(1 - 10*x - 11*x^2)).series(x, 30); s.coefficients(x, sparse=False) # G. C. Greubel, Dec 09 2018
    

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
From Peter Bala, Oct 13 2024: (Start)
a(n) = Integral_{x = -1..11} x^n * w(x) dx, where w(x) = 1/( Pi*sqrt((1 + x)*(11 - x)) ) is positive on the interval (-1, 11). The weight function w(x) is singular at x = -1 and at x = 11 and is the solution of the Hausdorff moment problem.
Inverse binomial transform of A098658.
The Gauss congruences hold: a(n*p^r) == a(n*p^(r-1)) (mod p^r) for all primes p and positive integers n and r. (End)
a(n) = (1/4)^n * Sum_{k=0..n} (-1)^k * 11^(n-k) * binomial(2*k,k) * binomial(2*(n-k),n-k). - Seiichi Manyama, Aug 18 2025

A307810 Expansion of 1/AGM(1-64*x, sqrt((1-16*x)*(1-256*x))).

Original entry on oeis.org

1, 100, 13924, 2371600, 453093796, 92598490000, 19745403216400, 4333667896360000, 971177275449892900, 221106619001508490000, 50967394891692703241104, 11866732390447357481358400, 2785834789480617203561744656, 658549235163074008904405646400
Offset: 0

Views

Author

Seiichi Manyama, Apr 30 2019

Keywords

Comments

See A246923.
Also the squares of coefficients in g.f. 1/sqrt((1-4*x)*(1-16*x)).

Crossrefs

Cf. A307695.
(Sum_{k=0..n} c^(n-k)*e^k*binomial(n,k)*binomial(2k,k))^2 = (Sum_{k=0..n} d^(n-k)*(-e)^k*binomial(n,k)*binomial(2k,k))^2, where e = (d-c)/4: A002894 (c=0,d=4,e=1), A246467 (c=1,d=5,e=1), A246876 (c=2,d=6,e=1), A246906 (c=3,d=7,e=1), A307811 (c=5,d=9,e=1), A322240 (c=-3,d=5,e=2), A322243 (c=-1,d=7,e=2), A246923 (c=1,d=9,e=2), A248167 (c=3, d=11,e=2), A322247 (c=-1,d=11,e=3), this sequence (c=4,d=16,e=3), A322245 (c=-5,d=11,e=4), A322249 (c=-3,d=13,e=4).

Programs

  • Mathematica
    a[n_] := Sum[4^(n-k) * 3^k * Binomial[n, k] * Binomial[2*k, k], {k, 0, n}]^2; Array[a, 14, 0] // Flatten (* Amiram Eldar, May 13 2021 *)
  • PARI
    N=20; x='x+O('x^N); Vec(1/agm(1-64*x, sqrt((1-16*x)*(1-256*x))))
    
  • PARI
    {a(n) = sum(k=0, n, 4^(n-k)*3^k*binomial(n, k)*binomial(2*k, k))^2}
    
  • PARI
    {a(n) = sum(k=0, n, 16^(n-k)*(-3)^k*binomial(n, k)*binomial(2*k, k))^2}

Formula

a(n) = A307695(n)^2 = (Sum_{k=0..n} 4^(n-k)*3^k*binomial(n,k)*binomial(2k,k))^2 = (Sum_{k=0..n} 16^(n-k)*(-3)^k*binomial(n,k)*binomial(2k,k))^2.
a(n) ~ 2^(8*n+2) / (3*Pi*n). - Vaclav Kotesovec, Sep 27 2019

A307811 Expansion of 1/AGM(1-45*x, sqrt((1-25*x)*(1-81*x))).

Original entry on oeis.org

1, 49, 2601, 148225, 8970025, 570111129, 37678303881, 2567836387809, 179267329355625, 12754414737348025, 921185098227422161, 67340346156989933769, 4971327735657992896201, 369994703739586257235225, 27725052308247030792515625, 2089567204521186409129541025
Offset: 0

Views

Author

Seiichi Manyama, Apr 30 2019

Keywords

Comments

See A246923.
Also the squares of coefficients in g.f. 1/sqrt((1-5*x)*(1-9*x)).

Crossrefs

Cf. A104454.
(Sum_{k=0..n} c^(n-k)*e^k*binomial(n,k)*binomial(2k,k))^2 = (Sum_{k=0..n} d^(n-k)*(-e)^k*binomial(n,k)*binomial(2k,k))^2, where e = (d-c)/4: A002894 (c=0,d=4,e=1), A246467 (c=1,d=5,e=1), A246876 (c=2,d=6,e=1), A246906 (c=3,d=7,e=1), this sequence (c=5,d=9,e=1), A322240 (c=-3,d=5,e=2), A322243 (c=-1,d=7,e=2), A246923 (c=1,d=9,e=2), A248167 (c=3, d=11,e=2), A322247 (c=-1,d=11,e=3), A307810 (c=4,d=16,e=3), A322245 (c=-5,d=11,e=4), A322249 (c=-3,d=13,e=4).

Programs

  • Mathematica
    a[n_] := Sum[5^(n-k) * Binomial[n, k] * Binomial[2*k, k], {k, 0, n}]^2; Array[a, 16, 0] // Flatten (* Amiram Eldar, May 13 2021 *)
  • PARI
    N=20; x='x+O('x^N); Vec(1/agm(1-45*x, sqrt((1-25*x)*(1-81*x))))
    
  • PARI
    {a(n) = sum(k=0, n, 5^(n-k)*binomial(n, k)*binomial(2*k, k))^2}
    
  • PARI
    {a(n) = sum(k=0, n, 9^(n-k)*(-1)^k*binomial(n, k)*binomial(2*k, k))^2}

Formula

a(n) = A104454(n)^2 = (Sum_{k=0..n} 5^(n-k)*binomial(n,k)*binomial(2k,k))^2 = (Sum_{k=0..n} 9^(n-k)*(-1)^k*binomial(n,k)*binomial(2k,k))^2.
a(n) ~ 3^(4*n+2) / (4*Pi*n). - Vaclav Kotesovec, Sep 27 2019
Showing 1-3 of 3 results.