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

A291986 Expansion of 1/((1-x)*(1-2*x^2)*(1-3*x^3)).

Original entry on oeis.org

1, 1, 3, 6, 10, 16, 33, 45, 79, 130, 198, 300, 517, 721, 1155, 1806, 2674, 3976, 6441, 9045, 13975, 21370, 31230, 46020, 72301, 101881, 154443, 233286, 338410, 496096, 765393, 1080765, 1619359, 2427250, 3504438, 5120220, 7806037, 11037601, 16409235, 24466686
Offset: 0

Views

Author

Seiichi Manyama, Sep 07 2017

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[1/((1-x)(1-2x^2)(1-3x^3)),{x,0,40}],x] (* or *) LinearRecurrence[{1,2,1,-3,-6,6},{1,1,3,6,10,16},40] (* Harvey P. Dale, Sep 15 2023 *)
  • PARI
    Vec(1/((1-x)*(1-2*x^2)*(1-3*x^3)) + O(x^100))

A291987 Expansion of 1/((1-x)*(1-2*x^2)*(1-3*x^3)*(1-4*x^4)).

Original entry on oeis.org

1, 1, 3, 6, 14, 20, 45, 69, 135, 210, 378, 576, 1057, 1561, 2667, 4110, 6902, 10220, 17109, 25485, 41583, 62250, 99666, 147960, 238633, 350881, 553107, 825126, 1292942, 1899620, 2977821, 4381269, 6791127, 10025730, 15415722, 22645296, 34970545, 51140521
Offset: 0

Views

Author

Seiichi Manyama, Sep 07 2017

Keywords

Crossrefs

Programs

  • GAP
    a:=[1,1,3,6,14,20,45,69,135,210];;
    for n in [11..10^2] do a[n]:=a[n-1]+2*a[n-2]+a[n-3]+a[n-4]-10*a[n-5]-2*a[n-6]-4*a[n-7]+12*a[n-8]+24*a[n-9]-24*a[n-10]; od; a; # Muniru A Asiru, Sep 07 2017
  • PARI
    Vec(1/((1-x)*(1-2*x^2)*(1-3*x^3)*(1-4*x^4)) + O(x^100))
    

Formula

a(n) = a(n-1) + 2*a(n-2) + a(n-3) + a(n-4) - 10*a(n-5) - 2*a(n-6) - 4*a(n-7) + 12*a(n-8) + 24*a(n-9) - 24*a(n-10) for n >= 11. - Muniru A Asiru, Sep 07 2017
Showing 1-2 of 2 results.