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-5 of 5 results.

A233668 a(n) = 6*binomial(5*n + 6,n)/(5*n + 6).

Original entry on oeis.org

1, 6, 45, 380, 3450, 32886, 324632, 3290040, 34034715, 357919100, 3815041230, 41124015036, 447534498320, 4910258796240, 54257308779600, 603260892430960, 6744185681876505, 75764901779438850, 854867886710698755, 9683529727259434200
Offset: 0

Views

Author

Tim Fulford, Dec 14 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(n*p + r, n)/(n*p + r); this is the case p = 5, r = 6.

References

  • C. H. Pah, M. R. Wahiddin, Combinatorial Interpretation of Raney Numbers and Tree Enumerations, Open Journal of Discrete Mathematics, 2015, 5, 1-9; http://www.scirp.org/journal/ojdm; http://dx.doi.org/10.4236/ojdm.2015.51001

Crossrefs

Cf. A000245 (k = 3), A006629 (k = 4), A196678 (k = 5), A233743 (k = 7), A233835 (k = 8), A234467 (k = 9), A232265 (k = 10), A229963 (k = 11).

Programs

  • Magma
    [6*Binomial(5*n+6,n)/(5*n+6): n in [0..30]];
  • Mathematica
    Table[6 Binomial[5 n + 6, n]/(5 n + 6), {n, 0, 30}]
  • PARI
    a(n) = 6*binomial(5*n+6,n)/(5*n+6);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/6))^6+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: A(x) = {1 + x*A(x)^(p/r)}^r, here p = 5, r = 6.
From _Peter Bala, Oct 16 2015: (Start)
O.g.f. A(x) = 1/x * series reversion (x*C(-x)^6), where C(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. for the Catalan numbers A000108. See cross-references for other Fuss-Catalan sequences with o.g.f. 1/x * series reversion (x*C(-x)^k), k = 3 through 11.
A(x)^(1/6) is the o.g.f. for A002294. (End)
D-finite with recurrence 8*n*(4*n+5)*(2*n+3)*(4*n+3)*a(n) -5*(5*n+1)*(5*n+2)*(5*n+3)*(5*n+4)*a(n-1)=0. - R. J. Mathar, Nov 22 2024

A233669 a(n) = 7*binomial(5*n+7, n)/(5*n+7).

Original entry on oeis.org

1, 7, 56, 490, 4550, 44051, 439824, 4496388, 46834095, 495260150, 5303177880, 57385471962, 626548297648, 6893781417320, 76362138282400, 850867975145160, 9530515916642385, 107249427630005661, 1211964598880990640, 13747501038498835300
Offset: 0

Views

Author

Tim Fulford, Dec 14 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), this is the case p=5, r=7.

Crossrefs

Programs

  • Magma
    [7*Binomial(5*n+7,n)/(5*n+7): n in [0..30]];
  • Mathematica
    Table[7 Binomial[5 n + 7, n]/(5 n + 7), {n, 0, 30}]
  • PARI
    a(n) = 7*binomial(5*n+7,n)/(5*n+7);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/7))^7+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, here p=5, r=7.
From Ilya Gutkovskiy, Sep 14 2018: (Start)
E.g.f.: 4F4(7/5,8/5,9/5,11/5; 1,9/4,5/2,11/4; 3125*x/256).
a(n) ~ 7*5^(5*n+13/2)/(sqrt(Pi)*2^(8*n+31/2)*n^(3/2)). (End)

A233736 a(n) = 8*binomial(5*n + 8, n)/(5*n + 8).

Original entry on oeis.org

1, 8, 68, 616, 5850, 57536, 581196, 5995184, 62891499, 668922800, 7197169980, 78195588168, 856708896784, 9454328800896, 104997940138300, 1172624772468960, 13161188646791865, 148375147999406328, 1679436658449372744, 19078164706488179600
Offset: 0

Views

Author

Tim Fulford, Dec 15 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), this is the case p=5, r=8.

Crossrefs

Programs

  • Magma
    [8*Binomial(5*n+8,n)/(5*n+8): n in [0..30]]; // Vincenzo Librandi, Dec 16 2013
  • Mathematica
    Table[8 Binomial[5 n + 8, n]/(5 n + 8), {n, 0, 40}] (* Vincenzo Librandi, Dec 16 2013 *)
  • PARI
    a(n) = 8*binomial(5*n+8,n)/(5*n+8);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/8))^8+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, where p=5, r=8.
From Ilya Gutkovskiy, Sep 14 2018: (Start)
E.g.f.: 5F5(8/5,9/5,2,11/5,12/5; 1,9/4,5/2,11/4,3; 3125*x/256).
a(n) ~ 5^(5*n+15/2)/(sqrt(Pi)*2^(8*n+29/2)*n^(3/2)). (End)

A233737 a(n) = 9*binomial(5*n+9, n)/(5*n+9).

Original entry on oeis.org

1, 9, 81, 759, 7371, 73656, 752913, 7838298, 82832706, 886322710, 9583986555, 104568156819, 1149793519368, 12728471356944, 141747219186705, 1586867219265060, 17848735288114995, 201607141031660871, 2285899896222757346, 26008027474874327190, 296840444852078282610, 3397721117411729991960
Offset: 0

Views

Author

Tim Fulford, Dec 15 2013

Keywords

Comments

Fuss-Catalan sequence is a(n,p,r) = r*binomial(np+r,n)/(np+r), this is the case p=5, r=9.

Crossrefs

Programs

  • Magma
    [9*Binomial(5*n+9,n)/(5*n+9): n in [0..30]];
  • Mathematica
    Table[9 Binomial[5 n + 9, n]/(5 n + 9), {n, 0, 30}]
  • PARI
    a(n) = 9*binomial(5*n+9,n)/(5*n+9);
    
  • PARI
    {a(n)=local(B=1); for(i=0, n, B=(1+x*B^(5/9))^9+x*O(x^n)); polcoeff(B, n)}
    

Formula

G.f. satisfies: B(x) = {1 + x*B(x)^(p/r)}^r, here p=5, r=9.
From Ilya Gutkovskiy, Sep 14 2018: (Start)
E.g.f.: 5F5(9/5,2,11/5,12/5,13/5; 1,5/2,11/4,3,13/4; 3125*x/256).
a(n) ~ 9*5^(5*n+17/2)/(sqrt(Pi)*2^(8*n+39/2)*n^(3/2)). (End)

A004344 Binomial coefficient C(5n+10,n).

Original entry on oeis.org

1, 15, 190, 2300, 27405, 324632, 3838380, 45379620, 536878650, 6358402050, 75394027566, 895068996640, 10638894058520, 126600387152400, 1508152231077400, 17984495151670680, 214667221708410075, 2564603660132096265, 30664510802988208300, 366934961273420740200
Offset: 0

Views

Author

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 828.

Crossrefs

Cf. A233738.

Programs

Formula

a(n) = C(5n+10,n) = (n+2)*A233738(n)/2. Wesley Ivan Hurt, Sep 01 2014
D-finite with recurrence 8*n*(2*n+5)*(4*n+7)*(4*n+9)*a(n) -5*(5*n+6)*(5*n+7)*(5*n+8)*(5*n+9)*a(n-1)=0. - R. J. Mathar, Mar 19 2025

Extensions

Name and offset changed by Wesley Ivan Hurt, Sep 01 2014
Showing 1-5 of 5 results.