%I #9 Jun 01 2022 12:16:41
%S 1,3,4,5,6,7,8,10,11,12,13,14,16,17,18,19,20,22,23,24,25,27,28,29,30,
%T 31,33,34,35,36,37,39,40,41,42,43,44,46,47,48,49,50,52,53,54,55,57,58,
%U 59,60,61,63,64,65,66,67,69,70,71,72,73,74,76,77,78,79
%N Solution (b(n)) of the complementary equation a(n) = b(n) + b(4n) ; see Comments.
%C Define complementary sequences a(n) and b(n) recursively:
%C b(n) = least new,
%C a(n) = b(n) + b(4n),
%C where "least new" means the least positive integer not yet placed. Empirically, {a(n) - 5*n: n >= 0} = {2,3} and {4*b(n) - 5*n: n >= 0} = {4,5,6,7,8,9}. See A304799 for a guide to related sequences.
%H Clark Kimberling, <a href="/A304804/b304804.txt">Table of n, a(n) for n = 0..10000</a>
%e b(0) = 1, so that a(0) = 2. Since a(1) = b(1) + b(4), we must have a(1) >= 9, so that b(1) = 3, b(2) = 4, b(3) = 5, b(4) = 6, b(5) = 7, b(6) = 8, and a(1) = 9.
%t mex[list_, start_] := (NestWhile[# + 1 &, start, MemberQ[list, #] &]);
%t h = 1; k = 4; a = {}; b = {1};
%t AppendTo[a, mex[Flatten[{a, b}], 1]];
%t Do[Do[AppendTo[b, mex[Flatten[{a, b}], Last[b]]], {k}];
%t AppendTo[a, Last[b] + b[[1 + (Length[b] - 1)/k h]]], {500}];
%t Take[a, 200] (* A304803 *)
%t Take[b, 200] (* A304804 *)
%t (* _Peter J. C. Moses_, May 14 2008 *)
%Y Cf. A304799, A304803.
%K nonn,easy
%O 0,2
%A _Clark Kimberling_, May 28 2018