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!)
A075256 List of pairs of numbers (a < b) in the sequence {a,b}-> {Max[{a,b}]-Min[{a,b}],k*Min[{a,b}]} with k=3 and the first pair {a=1,b=2}. 3
1, 2, 1, 3, 2, 3, 1, 6, 3, 5, 2, 9, 6, 7, 1, 18, 3, 17, 9, 14, 5, 27, 15, 22, 7, 45, 21, 38, 17, 63, 46, 51, 5, 138, 15, 133, 45, 118, 73, 135, 62, 219, 157, 186, 29, 471, 87, 442, 261, 355, 94, 783, 282, 689, 407, 846, 439, 1221, 782, 1317, 535, 2346, 1605, 1811, 206 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

Take any pair {a,b}. Each next pair is get by the rule {a,b} -> Sort[{Max[{a,b}]-Min[{a,b}],k*Min[{a,b}]]. Here k=3 and the first {a,b}={1,2}. For k = 2 there is a fixed point {a,b=2a}. For k > 2, are there any limits or cycles of the sequence {for some initial pair {a,b}?

LINKS

Table of n, a(n) for n=1..65.

FORMULA

x(n+1) = Min[{Max[{x(n), y(n)}]-Min[{x(n), y(n)}], k*Min[{x(n), y(n)}]}];

y(n+1) = Max[{Max[{x(n), y(n)}]-Min[{x(n), y(n)}], k*Min[{x(n), y(n)}]}].

x(n) = A075257(n) = a(2n-1), y(n) = A075258(n) = A075256(2n).

EXAMPLE

3rd pair is {2,3} because 2nd pair is {1,3}, Max[{a,b}]-Min[{a,b}] = 3 - 1 = 2, 3*Min[{a,b}] = 3*1 = 3.

MATHEMATICA

ss=Table[0, {j, 100}]; s=ss[[1]]={1, 2}; Do[ss[[i]]=Sort[{Max[s]-Min[s], 3*Min[s]}]; s=ss[[i]], {i, 2, 100}]; Flatten[ss]

CROSSREFS

Cf. A075257, A075258.

Sequence in context: A060162 A026730 A318691 * A334523 A001480 A308117

Adjacent sequences: A075253 A075254 A075255 * A075257 A075258 A075259

KEYWORD

nonn,tabf

AUTHOR

Zak Seidov, Sep 10 2002

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 March 22 01:15 EDT 2023. Contains 361413 sequences. (Running on oeis4.)