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.

A026543 Expansion of 1/((1-2*x)*(1-6*x)*(1-7*x)*(1-12*x)).

Original entry on oeis.org

1, 27, 481, 7191, 98161, 1272663, 16005025, 197611623, 2412718033, 29257382583, 353312653057, 4255864465671, 51186427162417, 615069092006487, 7386770412718177, 88683539390560935, 1064502765417159313
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [(-2^n +225*6^n -7^(n+3) +12^(n+2))/25: n in [0..30]]; // G. C. Greubel, Apr 09 2022
    
  • Mathematica
    CoefficientList[Series[1/((1-2x)(1-6x)(1-7x)(1-12x)),{x,0,30}],x] (* Harvey P. Dale, Apr 18 2019 *)
  • SageMath
    [(-2^n +225*6^n -7^(n+3) +12^(n+2))/25 for n in (0..30)] # G. C. Greubel, Apr 09 2022

Formula

a(n) = (-2^n + 225*6^n - 7^(n+3) + 12^(n+2))/25. - R. J. Mathar, Jun 23 2013
E.g.f.: 1/25 (-exp(2*x) + 225*exp(6*x) - 343*exp(7*x) + 144*exp(12*x)). - G. C. Greubel, Apr 09 2022