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.

User: Peter J Larcombe

Peter J Larcombe's wiki page.

Peter J Larcombe has authored 6 sequences.

A090004 Expansion of L(x)^(1/2), where L(x) is the g.f. for the Catalan Larcombe-French sequence A053175.

Original entry on oeis.org

1, 4, 32, 320, 3616, 44160, 568320, 7587840, 104042496, 1455308800, 20671234048, 297204973568, 4315444576256, 63173752913920, 931171553771520, 13806071300751360, 205737584679321600, 3079516590086553600, 46275305227975393280, 697790255614687969280, 10554814464110079508480
Offset: 0

Author

Peter J Larcombe, Jan 19 2004

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 25; CoefficientList[Series[(EllipticK[(8*x/(1 - 8*x))^2]/((1 - 8*x)*Pi/2))^(1/2), {x, 0, nmax}], x] (* Vaclav Kotesovec, Sep 26 2019 *)
  • PARI
    Vec( 1/agm(1,1-16*x+O(x^66))^(1/2) ) \\ Joerg Arndt, Aug 14 2013

Formula

a(n) = 2^n * A089603(n). - Seiichi Manyama, Jan 13 2019
a(n) ~ 2^(4*n - 1/2) / (n * sqrt(Pi*log(n))) * (1 - (gamma/2 + log(2))/log(n) + (3*gamma^2/8 + 3*log(2)*gamma/2 + 3*log(2)^2/2 - Pi^2/16) / log(n)^2), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Sep 29 2019

Extensions

More terms from Christian G. Bower, Jan 19 2004

A065409 Fennessey-Larcombe-French sequence.

Original entry on oeis.org

1, 8, 144, 2432, 40000, 649728, 10486784, 168681472, 2708038656, 43425996800, 695894425600, 11146676797440, 178493059563520, 2857665426882560, 45744737668300800, 732196083173687296, 11718755500209471488
Offset: 0

Author

Peter J Larcombe, Nov 14 2001

Keywords

Comments

Numbers appearing as coefficients in the series expansion of an elliptic integral of the second kind. Defining f(x; c) = [1 - c^2*sin^2(x)]^(1/2), consider the function E(c) obtained by integrating f(x; c) with respect to x between 0 and Pi/2. E(c) is transformed and written as a power series in c (through an intermediate variable) which acts as a generating function for the sequence.
E'(k) is complete elliptic integral of second kind evaluated at k'. - Michael Somos, Mar 04 2003

References

  • A. F. Jarvis, P. J. Larcombe and D. R. French, Linear recurrences between two recent integer sequences, Congressus Numerantium, 169 (2004), 79-99.
  • A. F. Jarvis, P. J. Larcombe and D. R. French, Power series identities generated by two recent integer sequences, Bulletin ICA, 43 (2005), 85-95.
  • P. J. Larcombe, A new asymptotic relation between two recent integer sequences, Congressus Numerantium, 175 (2005), 111-116.
  • P. J. Larcombe, D. R. French and E. J. Fennessey, The Fennessey-Larcombe-French sequence {1, 8, 144, 2432, 40000, ...}: formulation and asymptotic form, Congressus Numerantium, 158 (2002), 179-190.
  • P. J. Larcombe, D. R. French and E. J. Fennessey, The Fennessey-Larcombe-French sequence {1, 8, 144, 2432, 40000, ...}: a recursive formulation and prime factor decomposition, Congressus Numerantium, 160 (2003), 129-137.

Crossrefs

Programs

  • Mathematica
    a[n_] := 8^n*HypergeometricPFQ[{1/2, 5/4, 1/2-n/2, -n/2}, {1/4, 1, 1}, 1 ]; Table[ a[n], {n, 0, 16}] (* Jean-François Alcover, Jan 31 2012, from first formula *)
    Table[2^n Sum[(4k^2-2k-1)/(2k-1) Binomial[n,k]Binomial[2n-2k,n-k] Binomial[ 2k,k],{k,0,n}],{n,0,20}] (* Harvey P. Dale, Mar 18 2012 *)
    a[ n_] := If[ n < 0, 0, SeriesCoefficient[ Sum[ Binomial[2 k, k]^2 / (1 - 2 k) (2 x - 16 x^2)^k, {k, 0, n}] / (1 - 16 x), {x, 0, n}]]; (*Michael Somos, Jul 10 2017 *)
    a[ n_] := If [n < 0, 0, n! SeriesCoefficient[ Exp[8 x] BesselI[0, 4 x] (BesselI[0, 4 x] + 16 x BesselI[1, 4 x]), {x, 0, n}]]; (* Michael Somos, Jul 10 2017 *)
  • PARI
    {a(n) = my(A); if( n<0, 0, A =a gm(1, 1 - 16*x + x*O(x^n)); polcoeff((1 - 16*x - 2*x*(1 - 8*x) * log(A)') / A, n))}; /* Michael Somos, Mar 04 2003 */
    
  • PARI
    {a(n) = if( n<0, 0, polcoeff( sum(k=0, n, binomial(2*k,k)^2 / (1 - 2*k) * (2*x - 16*x^2)^k, x*O(x^n)) / (1 - 16*x), n))}; /* Michael Somos, Mar 04 2003 */

Formula

a(n) = 8^n * 4F3( [5/4, 1/2, (1/2)-n/2, -n/2], [1, 1, 1/4] | 1 ).
G.f.: F(-1/2, 1/2; 1; 32*x - 256*x^2) / (1 - 16*x) = E'(1 - 16*x) / (Pi/2 * (1 - 16*x)). - Michael Somos, Mar 04 2003
a(n)*(n^3 - n^2) = a(n-1)*(8 - 32*n^2 + 24*n^3) + a(n-2)*(256*n^2 - 128*n^3). - Michael Somos, Mar 04 2003
a(n) = 2^n*Sum_{k=0..n} (4*k^2-2*k-1)/(2*k-1)*binomial(n, k)*binomial(2*n-2*k, n-k)*binomial(2*k, k). - Vladeta Jovovic, Jun 02 2005
E.g.f.: exp(8*x)*BesselI(0, 4*x)*(BesselI(0, 4*x)+16*x*BesselI(1, 4*x)). - Vladeta Jovovic, Jun 02 2005
a(n) = (n+1)^2*(A053175(n+1)-8*A053175(n))/(8*n) for n>0. - Mark van Hoeij, Oct 31 2011
a(n) ~ 2^(4*n+1)/Pi. - Vaclav Kotesovec, Aug 13 2013

A060042 G.f.: V(x)^(1/4), where V(x) = Sum_{n >= 0} A065409(n)*x^n.

Original entry on oeis.org

1, 2, 30, 420, 5766, 79356, 1105868, 15656200, 225102726, 3280346476, 48334394756, 718513364856, 10756854024476, 161965917024856, 2450288410421976, 37217243114489616, 567231522298906566, 8671114430550556236, 132902927261011018836, 2041798846285571043096
Offset: 0

Author

N. J. A. Sloane, following a suggestion of Peter J Larcombe, Jan 16 2004

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[(HypergeometricPFQ[{-1/2, 1/2}, {1}, 32*x - 256*x^2]/(1 - 16*x))^(1/4), {x, 0, 20}], x] (* Vaclav Kotesovec, Sep 26 2019 *)

Formula

a(n) ~ 2^(4*n + 1/4) / (Gamma(1/4) * Pi^(1/4) * n^(3/4)). - Vaclav Kotesovec, Sep 26 2019

Extensions

More terms from Vaclav Kotesovec, Sep 26 2019

A053175 Catalan-Larcombe-French sequence.

Original entry on oeis.org

1, 8, 80, 896, 10816, 137728, 1823744, 24862720, 346498048, 4911669248, 70560071680, 1024576061440, 15008466534400, 221460239482880, 3287994183188480, 49074667327062016, 735814252604162048
Offset: 0

Author

Peter J Larcombe, Nov 12 2001

Keywords

Comments

These numbers were proposed as 'Catalan' numbers by an associate of Catalan. They appear as coefficients in the series expansion of an elliptic integral of the first kind. Defining f(x; c) = 1 /(1 - c^2*sin^2(x))^(1/2), consider the function I(c) obtained by integrating f(x; c) with respect to x between 0 and Pi/2. I(c) is transformed and written as a power series in c (through an intermediate variable) which acts as a generating function for the sequence.
Conjecture: Let P(n) be the (n+1) X (n+1) Hankel-type determinant with (i,j)-entry equal to a(i+j) for all i,j = 0,...,n. Then P(n)/2^(n*(n+3)) is a positive odd integer. - Zhi-Wei Sun, Aug 14 2013

Examples

			G.f. = 1 + 8*x + 80*x^2 + 896*x^3 + 10816*x^4 + 137728*x^5 + 1823774*x^6 + ...
		

References

  • P. J. Larcombe, D. R. French and E. J. Fennessey, The asymptotic behavior of the Catalan-Larcombe-French sequence {1, 8, 80, 896, 10816, ...}, Utilitas Mathematica, 60 (2001), 67-77.
  • P. J. Larcombe, D. R. French and C. A. Woodham, A note on the asymptotic behavior of a prime factor decomposition of the general Catalan-Larcombe-French number, Congressus Numerantium, 156 (2002), 17-25.

Crossrefs

Programs

  • Maple
    a := proc(n) option remember; if n = 0 then 1 elif n = 1 then 8 else (8*(3*n^2 -3*n+1)*a(n-1)-128*(n-1)^2*a(n-2))/n^2 fi end; # Peter Luschny, Jun 26 2009
  • Mathematica
    a[ n_] := SeriesCoefficient[ EllipticK[ (8 x /(1 - 8 x))^2] / ((1 - 8 x) Pi/2), {x, 0, n}]; (* Michael Somos, Aug 01 2011 *)
    a[ n_] := If[ n < 0, 0, n! SeriesCoefficient[ Exp[ 8 x] BesselI[ 0, 4 x]^2, {x, 0, n}]]; (* Michael Somos, Aug 01 2011 *)
    Table[(-8)^n Sqrt[Pi] HypergeometricPFQRegularized[{1/2, -n, -n}, {1, 1/2 - n}, -1]/n!, {n, 0, 20}] (* Vladimir Reshetnikov, May 21 2016 *)
  • PARI
    {a(n) = if( n<0, 0, polcoeff( 1 / agm( 1, 1 - 16*x + x * O(x^n)), n))}; /* Michael Somos, Feb 12 2003 */
    
  • PARI
    {a(n) = if( n<0, 0, polcoeff( sum( k=0, n, binomial( 2*k ,k)^2 * (2*x - 16*x^2)^k, x * O(x^n)), n))}; /* Michael Somos, Mar 04 2003 */

Formula

G.f.: 1 / AGM(1, 1 - 16*x) = 2 * EllipticK(8*x / (1-8*x)) / ((1-8*x)*Pi), where AGM(x, y) is the arithmetic-geometric mean of Gauss and Legendre. Cf. A081085, A089602. - Michael Somos, Mar 04 2003 and Vladeta Jovovic, Dec 30 2003
E.g.f.: exp(8*x)*BesselI(0, 4*x)^2. - Vladeta Jovovic, Aug 20 2003
a(n)*n^2 = a(n-1)*8*(3*n^2 - 3*n + 1) - a(n-2)*128*(n-1)^2. - Michael Somos, Apr 01 2003
Exponential convolution of A059304 with itself: Sum(2^n*binomial(2*n, n)*x^n/n!, n=0..infinity)^2 = (BesselI(0, 4*x)*exp(4*x))^2 = hypergeom([1/2], [1], 8*x)^2. - Vladeta Jovovic, Sep 09 2003
a(n) ~ 2^(4n+1)/(Pi*n). - Vaclav Kotesovec, Oct 09 2012
a(n) = 2^n*Sum_{k=0..n} C(n,k)*C(2*k,k)*C(2(n-k),n-k), where C(n,k)=n!/(k!*(n-k)!). This formula has been proved via the Zeilberger algorithm (both sides of the equality satisfy the same recurrence relation). a(n)/2^n also has another expression: Sum_{k=0..floor(n/2)} C(n,2*k)*C(2*k,k)^2*4^(n-2*k). - Zhi-Wei Sun, Mar 21 2013
a(n) = (-1)^n*Sum_{k=0..n}C(2*k,k)*C(2(n-k),n-k)*C(k,n-k)*(-4)^k. I have proved this new formula via the Zeilberger algorithm. - Zhi-Wei Sun, Nov 19 2014

A026301 Expansion of g.f. sqrt(V(x)), where V(x) = Sum_{n >= 0} A065409(n)*x^n.

Original entry on oeis.org

1, 4, 64, 960, 14112, 206976, 3051520, 45340672, 679088128, 10244538368, 155497791488, 2372333207552, 36346971717632, 558853784207360, 8618409948348416, 133250263847796736, 2064775104923041792, 32056922218818961408, 498560128589437599744
Offset: 0

Author

N. J. A. Sloane, following a suggestion of Peter J Larcombe, Jan 16 2004

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[Sqrt[HypergeometricPFQ[{-1/2, 1/2}, {1}, 32*x - 256*x^2]/(1 - 16*x)], {x, 0, 20}], x] (* Vaclav Kotesovec, Sep 26 2019 *)

Formula

a(n) ~ 2^(4*n + 1/2) / (Pi * sqrt(n)). - Vaclav Kotesovec, Sep 26 2019

Extensions

More terms from Sean A. Irvine, Sep 25 2019

A046105 a(n) = A026301(n)/2^n.

Original entry on oeis.org

1, 2, 16, 120, 882, 6468, 47680, 354224, 2652688, 20008864, 151853312, 1158365824, 8873772392, 68219456080, 526025997824, 4066475337152, 31505967787522, 244574907064964, 1901855959279776, 14811829930479600, 115514550050260068, 901993060739459720
Offset: 0

Author

N. J. A. Sloane, following a suggestion of Peter J Larcombe, Jan 16 2004

Keywords

Crossrefs

Formula

a(n) ~ 2^(3*n + 1/2) / (Pi * sqrt(n)). - Vaclav Kotesovec, Sep 26 2019

Extensions

More terms from Vaclav Kotesovec, Sep 26 2019