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.

A038121 E.g.f.: (1 + 15*x + (45/2)*x^2 + (5/2)*x^3)/(1 - 2*x)^(13/2).

Original entry on oeis.org

1, 28, 630, 13860, 315315, 7567560, 192972780, 5237832600, 151242416325, 4638100767300, 150738274937250, 5179915266025500, 187771928393424375, 7164221267933730000, 287080580807915895000, 12057384393932467590000
Offset: 0

Views

Author

Keywords

Crossrefs

Column 6 of triangle A001497.

Programs

  • Magma
    [Factorial(2*n+6)/ (720*Factorial(n)*2^n): n in [0..20]]; // Vincenzo Librandi, Nov 22 2011
    
  • Mathematica
    Table[(2n+6)!/(6!*n!*2^n),{n,0,20}] (* Vincenzo Librandi, Nov 22 2011 *)
  • PARI
    x='x+O('x^50); Vec(serlaplace((1+15*x+45/2*x^2+5/2*x^3)/(1-2*x)^(13/2))) \\ G. C. Greubel, Aug 13 2017

Formula

a(n) = (2n+6)! / (6!*n!*2^n).
n*a(n) - (n+3)*(2*n+5)*a(n-1) = 0. - R. J. Mathar, Oct 31 2015