OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
A0[1]:= {2, 4}:
A1[1]:= {1}:
A11[1]:= {}:
count:= 0:
for n from 2 while count < 1000 do
A0[n]:= map(t -> (5*t, 5*t+2, 5*t+4), A0[n-1]);
A1[n]:= map(t -> (5*t, 5*t+2, 5*t+4), A1[n-1]) union map(t -> 5*t+1, A0[n-1]);
A11[n]:= map(t -> (5*t, 5*t+2, 5*t+4), A11[n-1]) union map(t -> 5*t+1, A1[n-1]);
count:= count + nops(A11[n]);
od:
sort([seq(op(A11[i]), i=1..n-1)]); # Robert Israel, Dec 10 2023
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved