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.

A139746 a(n) = 11^n - 8^n.

Original entry on oeis.org

0, 3, 57, 819, 10545, 128283, 1509417, 17390019, 197581665, 2223729963, 24863682777, 276721736019, 3069708899985, 33972956330043, 375351787072137, 4142063797326819, 45668254886861505, 503195228685608523, 5541902914982749497, 61014975260338690419, 671597073427953162225
Offset: 0

Views

Author

N. J. A. Sloane, May 20 2008

Keywords

Crossrefs

Cf. A016187.

Programs

  • Magma
    [11^n-8^n: n in [0..30]]; // Vincenzo Librandi, Jun 02 2011
  • Mathematica
    Table[11^n-8^n,{n,0,30}] (* or *) LinearRecurrence[{19,-88},{0,3},30] (* Harvey P. Dale, Apr 13 2019 *)

Formula

a(n) = 19*a(n-1) - 88*a(n-2). - Vincenzo Librandi, Jun 02 2011
From Elmo R. Oliveira, Apr 01 2025: (Start)
G.f.: 3*x/((1-8*x)*(1-11*x)).
E.g.f.: 2*exp(19*x/2)*sinh(3*x/2).
a(n) = 3*A016187(n-1) for n >= 1. (End)