This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A295134 #4 Nov 19 2017 10:44:02 %S A295134 1,2,9,31,98,300,907,2730,8200,24611,73845,221548,664658,1993989, %T A295134 5981983,17945966,53837916,161513767 %N A295134 Solution of the complementary equation a(n) = 3*a(n-1) + b(n-1) - 1, where a(0) = 1, a(1) = 2, b(0) = 3, and (a(n)) and (b(n)) are increasing complementary sequences. %C A295134 The increasing complementary sequences a() and b() are uniquely determined by the titular equation and initial values. See A295053 for a guide to related sequences. %H A295134 Clark Kimberling, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL10/Kimberling/kimberling26.html">Complementary equations</a>, J. Int. Seq. 19 (2007), 1-13. %e A295134 a(0) = 1, a(1) = 2, b(0) = 3 %e A295134 a(2) =3*a(1) + b(1) - 1 = 9 %e A295134 Complement: (b(n)) = (3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, ... ) %t A295134 mex := First[Complement[Range[1, Max[#1] + 1], #1]] &; %t A295134 a[0] = 1; a[1] = 2; b[0] = 3; %t A295134 a[n_] := a[n] = 3 a[n - 1] + b[n - 1] -1; %t A295134 b[n_] := b[n] = mex[Flatten[Table[Join[{a[n]}, {a[i], b[i]}], {i, 0, n - 1}]]]; %t A295134 Table[a[n], {n, 0, 18}] (* A295134 *) %t A295134 Table[b[n], {n, 0, 10}] %Y A295134 Cf. A295053. %K A295134 nonn,easy %O A295134 0,2 %A A295134 _Clark Kimberling_, Nov 19 2017