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.

A107942 a(n) = (n+1)(n+2)^3*(n+3)^3*(n+4)(2n+5)/4320.

Original entry on oeis.org

1, 28, 300, 1925, 8918, 32928, 102816, 282150, 698775, 1591876, 3383380, 6782139, 12931100, 23609600, 41505024, 70570332, 116486397, 187250700, 293916700, 451511137, 680159634, 1006454240, 1465100000, 2100881250, 2970992115
Offset: 0

Views

Author

Emeric Deutsch, Jun 12 2005

Keywords

Comments

Kekulé numbers for certain benzenoids.
Dimensions of certain Lie algebra (see Landsberg-Manivel reference for precise definition). - N. J. A. Sloane, Oct 15 2007

Programs

  • Maple
    a:=n->(1/4320)*(n+1)*(n+2)^3*(n+3)^3*(n+4)*(2*n+5): seq(a(n),n=0..30);
  • Mathematica
    Table[(1/4320)(n+1)(n+2)^3(n+3)^3(n+4)(2n+5),{n,0,30}] (* Harvey P. Dale, Nov 03 2011 *)

Formula

G.f.: (x+1)*(x^4+17*x^3+48*x^2+17*x+1)/(x-1)^10. - Colin Barker, Sep 20 2012
a(n) = 10*a(n-1) - 45*a(n-2) + 120*a(n-3) - 210*a(n-4) + 252*a(n-5) - 210*a(n-6) + 120*a(n-7) - 45*a(n-8) + 10*a(n-9) - a(n-10). - Wesley Ivan Hurt, Jun 23 2020