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.

A085280 Expansion of (1-4x+x^2)/((1-x)(1-3x)(1-4x)).

Original entry on oeis.org

1, 4, 14, 48, 166, 584, 2094, 7648, 28406, 107064, 408574, 1575248, 6123846, 23963944, 94261454, 372262848, 1474702486, 5855763224, 23293912734, 92788230448, 369990660326, 1476475856904, 5895443074414, 23550391238048
Offset: 0

Views

Author

Paul Barry, Jun 25 2003

Keywords

Comments

Binomial transform of A085279.

Programs

  • Magma
    [3^n+4^n/3-1/3: n in [0..30]]; // Vincenzo Librandi, May 26 2013
  • Mathematica
    Table[(3^n + 4^n/3 - 1/3), {n, 0, 30}] (* Vincenzo Librandi, May 26 2013 *)
    CoefficientList[Series[(1-4x+x^2)/((1-x)(1-3x)(1-4x)),{x,0,30}],x] (* Harvey P. Dale, Jan 02 2021 *)

Formula

a(n) = 3^n+4^n/3-1/3.