login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A176632 a(n) = 6*a(n-1)-8*a(n-2)-9 for n > 2; a(0) = 77, a(1) = 897, a(2) = 3333. 5
77, 897, 3333, 12813, 50205, 198717, 790653, 3154173, 12599805, 50365437, 201394173, 805441533, 3221495805, 12885442557, 51540688893, 206160592893, 824638046205, 3298543534077, 13194156834813, 52776592736253 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Related to Reverse and Add trajectory of 77 in base 2: a(n) = A075253(4*n), i.e., first quadrisection of A075253.
LINKS
FORMULA
a(n) = 3*(64*4^n+22*2^n-1) for n > 0, a(0) = 77.
G.f.: (77+358*x-1868*x^2+1424*x^3)/((1-x)*(1-2*x)*(1-4*x)).
G.f. for the sequence starting at a(1): 3*x*(299-982*x+680*x^2)/((1-x)* (1-2*x)*(1-4*x)).
MATHEMATICA
CoefficientList[Series[(77 + 358 x - 1868 x^2 + 1424 x^3)/((1 - x) (1 - 2 x) (1 - 4 x)), {x, 0, 40}], x] (* Vincenzo Librandi, Sep 24 2013 *)
Join[{77}, RecurrenceTable[{a[1]==897, a[2]==3333, a[n]==6a[n-1]-8a[n-2]- 9}, a[n], {n, 20}]] (* Harvey P. Dale, May 21 2019 *)
PROG
(PARI) {m=20; v=concat([77, 897, 3333], vector(m-3)); for(n=4, m, v[n]=6*v[n-1]-8*v[n-2]-9); v}
(Magma) [77] cat [3*(64*4^n+22*2^n-1): n in [1..25]]; // Vincenzo Librandi, Sep 24 2013
CROSSREFS
Cf. A075253 (Reverse and Add trajectory of 77 in base 2), A176633, A176634, A176635, A171471.
Sequence in context: A223649 A205434 A125581 * A093277 A217643 A205603
KEYWORD
nonn,easy
AUTHOR
Klaus Brockhaus, Apr 22 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)