OFFSET
0,1
COMMENTS
Related to Reverse and Add trajectory of 22 in base 2: A061561(4*n+3) = 3*a(n).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..500
Index entries for linear recurrences with constant coefficients, signature (7,-14,8).
FORMULA
a(n) = 32*4^n + 4*2^n - 1.
G.f.: (35-110*x+72*x^2)/((1-x)*(1-2*x)*(1-4*x)).
a(n) = A092431(n+3).
a(n+1) - a(n) = A049775(n+5).
E.g.f.: exp(x)*(32*exp(3*x) + 4*exp(x) - 1). - Stefano Spezia, Sep 27 2023
PROG
(PARI) {m=20; v=concat([35, 135], vector(m-2)); for(n=3, m, v[n]=6*v[n-1]-8*v[n-2]-3); v}
(Magma) [32*4^n+4*2^n-1: n in [0..30]]; // Vincenzo Librandi, Jul 18 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Dec 09 2009
STATUS
approved