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.

A082724 a(n) = (3*11^n + 3^n)/4.

Original entry on oeis.org

1, 9, 93, 1005, 11001, 120849, 1328853, 14615925, 160770801, 1768465689, 19453083213, 213983797245, 2353821415401, 25892034506529, 284812376383173, 3132936130648965, 34462297408440801, 379085271406755369
Offset: 0

Views

Author

Paul Barry, Apr 23 2003

Keywords

Comments

Binomial transform of A083234.

Programs

  • Magma
    [(3*11^n+3^n)/4: n in [0..25]]; // Vincenzo Librandi, Jun 29 2011
  • Mathematica
    Table[(3*11^n+3^n)/4,{n,0,20}] (* or *) LinearRecurrence[{14,-33},{1,9},20] (* Harvey P. Dale, Apr 09 2023 *)

Formula

a(n) = (3*11^n + 3^n)/4.
G.f.: (1-5*x)/((1-11*x)*(1-3*x)).
E.g.f.: (3*exp(11*x) + exp(3*x))/4.