A086224 a(n) = 7*2^n - 1.
6, 13, 27, 55, 111, 223, 447, 895, 1791, 3583, 7167, 14335, 28671, 57343, 114687, 229375, 458751, 917503, 1835007, 3670015, 7340031, 14680063, 29360127, 58720255, 117440511, 234881023, 469762047, 939524095, 1879048191, 3758096383, 7516192767, 15032385535, 30064771071
Offset: 0
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..3319
- Gennady Eremin, Partitioning the set of natural numbers into Mersenne trees and into arithmetic progressions; Natural Matrix and Linnik's constant, arXiv:2405.16143 [math.CO], 2024. See pp. 3-5, 14.
- Index entries for linear recurrences with constant coefficients, signature (3,-2).
Crossrefs
Programs
-
Mathematica
7*2^Range[0,30]-1 (* Harvey P. Dale, May 09 2018 *)
-
PARI
a(n)=7<
Charles R Greathouse IV, Sep 24 2015
Formula
a(n+1) = 2*a(n) + 1.
G.f.: (6-5*x)/((1-x)*(1-2*x)). - Jaume Oliver Lafont, Sep 14 2009
a(n-1)^2 + a(n) = (7*2^(n-1))^2. - Vincenzo Librandi, Aug 08 2010
From Elmo R. Oliveira, Apr 22 2025: (Start)
E.g.f.: exp(x)*(7*exp(x) - 1).
a(n) = 3*a(n-1) - 2*a(n-2). (End)
Extensions
More terms from David Wasserman, Feb 22 2005
Comments