login
A281481
a(n) = 2^(n - 1) * (2^n + 1) + 1.
3
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,1
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
PROG
(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
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.
Sequence in context: A328425 A174107 A253927 * A138301 A367495 A173939
KEYWORD
nonn,easy
AUTHOR
Jaroslav Krizek, Jan 22 2017
STATUS
approved