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.

A220088 a(n) = 2^n - 81.

Original entry on oeis.org

-80, -79, -77, -73, -65, -49, -17, 47, 175, 431, 943, 1967, 4015, 8111, 16303, 32687, 65455, 130991, 262063, 524207, 1048495, 2097071, 4194223, 8388527, 16777135, 33554351, 67108783, 134217647, 268435375, 536870831, 1073741743, 2147483567, 4294967215
Offset: 0

Views

Author

Andreas Rieber, Dec 04 2012

Keywords

Crossrefs

Programs

  • Mathematica
    Table[2^n - 81, {n, 0, 40}] (* T. D. Noe, Dec 04 2012 *)

Formula

From Chai Wah Wu, Jan 17 2020: (Start)
a(n) = 3*a(n-1) - 2*a(n-2) for n > 1.
G.f.: (161*x - 80)/((x - 1)*(2*x - 1)). (End)
From Elmo R. Oliveira, Nov 11 2023: (Start)
a(n) = 2*a(n-1) + 81 with a(0) = -80.
E.g.f.: exp(2*x) - 81*exp(x). (End)