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.

A281482 a(n) = 2^(n + 1) * (2^n + 1) - 1.

Original entry on oeis.org

3, 11, 39, 143, 543, 2111, 8319, 33023, 131583, 525311, 2099199, 8392703, 33562623, 134234111, 536903679, 2147549183, 8590065663, 34360000511, 137439477759, 549756862463, 2199025352703, 8796097216511, 35184380477439, 140737505132543, 562949986975743
Offset: 0

Views

Author

Jaroslav Krizek, Jan 22 2017

Keywords

Crossrefs

Similar sequences: A085601 (2^(n + 1) * (2^n + 1) + 1), A092431 (2^(n - 1) * (2^n + 1) - 1), A092440 (2^(n + 1) * (2^n - 1) + 1), A129868 (2^(n - 1) * (2^n - 1) - 1), A134169 (2^(n - 1) * (2^n - 1) + 1), A267816 (2^(n + 1) * (2^n - 1) - 1), A281481 (2^(n - 1) * (2^n + 1) + 1).

Programs

  • Magma
    [2^(n + 1) * (2^n + 1) - 1: n in [0..200]];
    
  • PARI
    Vec((3 - 10*x + 4*x^2) / ((1 - x)*(1 - 2*x)*(1 - 4*x)) + O(x^30)) \\ Colin Barker, Jan 22 2017

Formula

From Colin Barker, Jan 22 2017: (Start)
a(n) = 7*a(n-1) - 14*a(n-2) + 8*a(n-3) for n>2.
G.f.: (3 - 10*x + 4*x^2) / ((1 - x)*(1 - 2*x)*(1 - 4*x)).
(End)