The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A228469 a(n) = 6*a(n-2) + a(n-4), where a(0) = 2, a(1) = 8, a(2) = 13, a(3) = 49. 5
2, 8, 13, 49, 80, 302, 493, 1861, 3038, 11468, 18721, 70669, 115364, 435482, 710905, 2683561, 4380794, 16536848, 26995669, 101904649, 166354808, 627964742, 1025124517, 3869693101, 6317101910, 23846123348, 38927735977, 146946433189, 239883517772, 905524722482 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The classical Euclidean algorithm iterates the mapping u(x,y) = (y, (x mod y)) until reaching g = GCD(x,y) in a pair ( . , g). In much the same way, the modified algorithm (A228247) iterates the mapping v(x,y) = (y, y - (x mod y)). The accelerated Euclidean algorithm uses w(x,y) = min(u(x,y),v(x,y)). Let s(x,y) be the number of applications of u, starting with (x,y) -> u(x,y) needed to reach ( . , g), and let u'(x,y) be the number of applications of w to reach ( . , g). Then u'(x,y) <= u(x,y) for all (x,y).
Starting with a pair (x,y), at each application of w, record 0 if w( . , . ) = u( . , . ) and 1 otherwise. The trace of (x,y), denoted by trace(x,y), is the resulting 01 word, whose length is the total number of applications of w.
Conjecture: a(n) is the least positive integer c for which there is a positive integer b for which trace(b,c) consists of the first n letters of 01010101010101...
LINKS
FORMULA
G.f.: (x^3 + x^2 + 8*x + 2)/(1 - 6*x^2 - x^4). - Ralf Stephan, Aug 24 2013
EXAMPLE
a(3) = 13 because trace(18/13) = 010, and 13 is the least c for which there is a number b such that trace(b/c) = 010. Successive applications of w are indicated by (18,13)->(13,5)->(5,2)->(2,1). Whereas w finds GCD in 3 steps, u takes 4 steps, as indicated by (18,3)->(13,5)->(5,3)->(3,2)->(2,1).
MATHEMATICA
c1 = CoefficientList[Series[(2 + 8 x + x^2 + x^3)/(1 - 6 x^2 - x^4), {x, 0, 40}], x]; c2 = CoefficientList[Series[(3 + 11 x + 2 x^3)/(1 - 6 x^2 - x^4), {x, 0, 40}], x]; pairs = Transpose[CoefficientList[Series[{-((3 + 11 x + 2 x^3)/(-1 + 6 x^2 + x^4)), -((2 + 8 x + x^2 + x^3)/(-1 + 6 x^2 + x^4))}, {x, 0, 20}], x]]; t[{x_, y_, _}] := t[{x, y}]; t[{x_, y_}] := Prepend[If[# > y - #, {y - #, 1}, {#, 0}], y] &[Mod[x, y]]; userIn2[{x_, y_}] := Most[NestWhileList[t, {x, y}, (#[[2]] > 0) &]]; Map[Map[#[[3]] &, Rest[userIn2[#]]] &, pairs] (* Peter J. C. Moses, Aug 20 2013 *)
LinearRecurrence[{0, 6, 0, 1}, {2, 8, 13, 49}, 30] (* T. D. Noe, Aug 23 2013 *)
PROG
(PARI) Vec((x^3+x^2+8*x+2)/(1-6*x^2-x^4)+O(x^99)) \\ Charles R Greathouse IV, Jun 12 2015
CROSSREFS
Cf. A179237 (bisection), A228470, A228471, A228487, A228488.
Sequence in context: A106359 A257036 A077241 * A066567 A349818 A329453
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 22 2013
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 May 22 01:33 EDT 2024. Contains 372741 sequences. (Running on oeis4.)