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.

A103878 Expansion of x / ((1-12x)(1-15x)(1-20x)(1-30x)(1-60x)).

Original entry on oeis.org

0, 1, 137, 12019, 874853, 58067611, 3673451957, 226576032859, 13790081534933, 833490615528571, 50196582942983477, 3017503478665411099, 181223386494229073813, 10878637590184410995131, 652876078076017863582197, 39177315318319288337595739
Offset: 0

Views

Author

Ralf Stephan, Feb 20 2005

Keywords

Crossrefs

Cf. A001242.

Programs

  • Mathematica
    CoefficientList[Series[x/((1-12x)(1-15x)(1-20x)(1-30x)(1-60x)),{x,0,20}],x] (* or *) LinearRecurrence[ {137,-6750,153000,-1620000,6480000},{0,1,137,12019,874853},20] (* Harvey P. Dale, Aug 31 2024 *)
  • PARI
    concat(0, Vec(x/(-6480000*x^5+1620000*x^4-153000*x^3+6750*x^2-137*x+1) + O(x^100))) \\ Colin Barker, Apr 26 2015

Formula

a(n) = (1/12) (12^n - 4*15^n + 6*20^n - 4*30^n + 60^n).