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.

A139745 a(n) = 11^n - 7^n.

Original entry on oeis.org

0, 4, 72, 988, 12240, 144244, 1653912, 18663628, 208594080, 2317594084, 25654949352, 283334343868, 3124587089520, 34425823133524, 379071610510392, 4172500607905708, 45916496933002560, 505214397985306564, 5558288899894321032, 61147691553229173148, 672670202666262397200
Offset: 0

Views

Author

N. J. A. Sloane, May 20 2008

Keywords

Crossrefs

Programs

  • Magma
    [11^n-7^n: n in [0..30]]; // Vincenzo Librandi, Jun 02 2011
  • Mathematica
    Table[11^n-7^n,{n,0,30}] (* or *) LinearRecurrence[{18,-77},{0,4},30] (* Harvey P. Dale, Jun 17 2014 *)

Formula

a(n) = 18*a(n-1) - 77*a(n-2). - Vincenzo Librandi, Jun 02 2011
From Stefano Spezia, Mar 09 2025: (Start)
G.f.: 4*x/((1 - 11*x)*(1 - 7*x)).
E.g.f.: exp(7*x)*(exp(4*x) - 1). (End)
a(n) = 4*A016183(n-1) for n >= 1. - Elmo R. Oliveira, Apr 01 2025