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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

2, 4, 11, 37, 137, 529, 2081, 8257, 32897, 131329, 524801, 2098177, 8390657, 33558529, 134225921, 536887297, 2147516417, 8590000129, 34359869441, 137439215617, 549756338177, 2199024304129, 8796095119361, 35184376283137, 140737496743937, 562949970198529
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), A281482 (2^(n + 1) * (2^n + 1) - 1).
Cf. A278930.

Programs

  • Magma
    [2^(n - 1) * (2^n + 1) + 1: n in [0..200]];
    
  • PARI
    Vec((2 - 10*x + 11*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.: (2 - 10*x + 11*x^2) / ((1 - x)*(1 - 2*x)*(1 - 4*x)).
(End)
a(n) = A278930(n - 2) for n >= 7. - Georg Fischer, Mar 26 2019
Showing 1-1 of 1 results.