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.

A154410 a(n) = 5*(3*6^n + 2^n)/2.

Original entry on oeis.org

10, 50, 280, 1640, 9760, 58400, 350080, 2099840, 12597760, 75584000, 453498880, 2720983040, 16325877760, 97955225600, 587731271680, 3526387466240, 21158324469760, 126949946163200, 761699675668480, 4570198051389440, 27421188303093760
Offset: 0

Views

Author

Paul Curtz, Jan 09 2009

Keywords

Programs

  • Magma
    [5*(3*6^n+2^n)/2: n in [0..30]]; // Vincenzo Librandi, Aug 07 2011
  • Mathematica
    LinearRecurrence[{8,-12},{10,50},30] (* Harvey P. Dale, Apr 27 2018 *)

Formula

a(n) = 8*a(n-1) - 12*a(n-2).
a(n) = 6*a(n-1) - 10*2^(n-1).
a(n) = A154407(n+1) - A154407(n).
a(n) = 10*A090040(n).
G.f.: 10*(1-3*x)/((1-2*x)*(1-6*x)). - Jaume Oliver Lafont, Aug 30 2009
E.g.f.: (5/2)*( exp(2*x) + 3*exp(6*x) ). - G. C. Greubel, Sep 16 2016

Extensions

Entries corrected and extended by Paolo P. Lava, Jan 20 2009
Comments turned into formulas by R. J. Mathar, Sep 07 2009