login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A234038
Smallest positive integer solution x of 9*x - 2^n*y = 1.
2
1, 1, 1, 1, 9, 25, 57, 57, 57, 57, 569, 1593, 3641, 3641, 3641, 3641, 36409, 101945, 233017, 233017, 233017, 233017, 2330169, 6524473, 14913081, 14913081, 14913081, 14913081, 149130809, 417566265, 954437177, 954437177, 954437177
OFFSET
0,5
COMMENTS
The solution of the linear Diophantine equation 9*x - 2^n*y = 1 with smallest positive x is x=a(n), n>= 0, and the corresponding y is given by y(n) = 5^(n+3) (mod 9) = A070366(n+3) with o.g.f. (8-4*x-2*x^2+7*x^3)/((1-x+x^2)*(1-x)*(1+x)) (derived from the one given in A070366). This is the periodic sequence with period [8, 4, 2, 1, 5, 7].
LINKS
FORMULA
a(n) = (1 + 2^n*(5^(n-3)(mod 9)))/3^2, n >= 3.
O.g.f.: (1-2*x+8*x^3-8*x^4)/((1-x)*(1-4*x^2)*(1-2*x+4*x^2)) (derived from the one for y(n) given above in a comment).
a(n) = 2*(a(n-1) - 4*a(n-3) + 8*a(n-4)) - 1, n >= 4, a(0)=a(1)=a(2)=a(3) = 1 (from the y(n) recurrence given in A070366).
EXAMPLE
n = 0: 9*1 - 1*8 = 1; n = 3: 9*1 - 8*1 = 1.
a(4) = (1 + 2^4*5)/9 = 9.
MATHEMATICA
A234038[n_] := Ceiling[(1 + 2^n*Mod[5^(n - 3), 9])/9]; Array[A234038, 50, 0] (* or *)
LinearRecurrence[{3, -2, -8, 24, -16}, {1, 1, 1, 1, 9}, 50] (* Paolo Xausa, Nov 05 2024 *)
CROSSREFS
Cf. A070366, A007583 (see the Feb 15 2013 comment).
Sequence in context: A336669 A239745 A269440 * A304033 A048490 A113828
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Feb 17 2014
STATUS
approved