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!)
A028352 A Golomb-like recurrence that decreases infinitely often. 1
2, 8, 6, 4, 2, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 72, 70, 68, 66, 64, 62, 60, 58, 56, 54, 52, 50, 48, 46, 44, 42, 40, 38, 36, 34, 32, 30, 28, 26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 216, 214, 212, 210, 208, 206, 204, 202 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence is a solution to the recursion a(a(n) + n) = a(n) + 4n, which is similar to the Golomb recursion b(b(n) + kn) = 2b(n) + kn, k=1,2,...
LINKS
E. J. Barbeau, J. Chew and S. Tanny, A matrix dynamics approach to Golomb's recursion, Electronic J. Combinatorics, #4.1 16 1997.
FORMULA
a(1)=1, a(2*3^m+r) = 8*3^m - 2r with m=0, 1, 2, ..., 0 <= r <= 4*3^m - 1. - Ralf Stephan, Jan 16 2003
a(n) = 12*3^floor(log(n/2)/log(3)) - 2*n. - Benoit Cloitre, Jan 23 2003
MATHEMATICA
Table[12*3^Floor[Log[n/2]/Log[3]] - 2*n , {n, 1, 50}] (* G. C. Greubel, Nov 27 2016 *)
PROG
(PARI) a(n) = if(n==1, 2, m=floor(log(n/2)/log(3)); r=n-2*3^m; 8*3^m-2*r)
CROSSREFS
Sequence in context: A175803 A019986 A146943 * A132699 A347634 A248413
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Edited by Ralf Stephan, Jan 16 2003
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)