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.

A247614 a(n) = Sum_{k=0..9} binomial(18,k)*binomial(n,k).

Original entry on oeis.org

1, 19, 190, 1330, 7315, 33649, 134596, 480700, 1562275, 4686825, 13079352, 34084128, 83204745, 191006115, 414237570, 852920310, 1675575165, 3155247975, 5719519850, 10018268150, 17013571223, 28096825757, 45238870040, 71179679480, 109665022415
Offset: 0

Views

Author

Vincenzo Librandi, Sep 23 2014

Keywords

Crossrefs

Programs

  • Magma
    m:=9; [&+[Binomial(2*m,k)*Binomial(n,k): k in [0..m]]: n in [0..40]];
    
  • Magma
    [(181440+462101904*n-1283316876*n^2+1433031524*n^3 -853620201*n^4+303063726*n^5-66245634*n^6 +8905416*n^7-678249*n^8+24310*n^9)/181440: n in [0..40]];
    
  • Mathematica
    Table[(181440 + 462101904 n - 1283316876 n^2 + 1433031524 n^3 - 853620201 n^4 + 303063726 n^5 - 66245634 n^6 + 8905416 n^7 - 678249 n^8 + 24310 n^9)/181440, {n, 0, 40}] (* or *) CoefficientList[Series[(1 + 9 x + 45 x^2 + 165 x^3 + 495 x^4 + 1287 x^5 + 3003 x^6 + 6435 x^7 + 12870 x^8 + 24310 x^9)/(1 - x)^10, {x, 0, 40}], x]
    LinearRecurrence[{10,-45,120,-210,252,-210,120,-45,10,-1},{1,19,190,1330,7315,33649,134596,480700,1562275,4686825},30] (* Harvey P. Dale, Jul 19 2019 *)
  • Sage
    m=9; [sum((binomial(2*m,k)*binomial(n,k)) for k in (0..m)) for n in (0..40)] # Bruno Berselli, Sep 23 2014

Formula

G.f.: (1 +9*x +45*x^2 +165*x^3 +495*x^4 +1287*x^5 +3003*x^6 + 6435*x^7 +12870*x^8 +24310*x^9) / (1-x)^10.
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).
a(n) = (181440 + 462101904*n - 1283316876*n^2 + 1433031524*n^3 - 853620201*n^4 + 303063726*n^5 - 66245634*n^6+8905416*n^7 - 678249*n^8 + 24310*n^9) / 181440.