OFFSET
0,1
COMMENTS
The increasing complementary sequences a() and b() are uniquely determined by the titular equation and initial values. The solution a( ) is given at A297830, which includes a guide to related sequences.
Conjecture: 3/5 < a(n) - n*sqrt(2)*n < 3 for n >= 1.
LINKS
Clark Kimberling, Table of n, a(n) for n = 0..10000
Clark Kimberling, Complementary equations, J. Int. Seq. 19 (2007), 1-13.
MATHEMATICA
a[0] = 1; a[1] = 2; b[0] = 3; b[1] = 4;
a[n_] := a[n] = a[1]*b[n - 1] - a[0]*b[n - 2] + 2 n;
j = 1; While[j < 80000, k = a[j] - j - 1;
While[k < a[j + 1] - j + 1, b[k] = j + k + 2; k++]; j++]; k
u = Table[a[n], {n, 0, k}]; (* A297830 *)
v = Table[b[n], {n, 0, k}]; (* A298003 *)
Take[u, 50]
Take[v, 50]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 08 2018
STATUS
approved
