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”).

A009307
If a, b in sequence, so is ab+6.
1
2, 10, 26, 58, 106, 122, 218, 250, 266, 442, 506, 538, 586, 682, 890, 1018, 1066, 1082, 1178, 1226, 1370, 1514, 1786, 2042, 2138, 2170, 2186, 2362, 2458, 2506, 2666, 2746, 2762, 3034, 3178, 3370, 3578, 4090, 4282, 4346, 4378, 4426, 4730, 4922, 5018, 5066
OFFSET
1,1
LINKS
MAPLE
R:= {2}:
N:= 6000:
Agenda:= {2^2+6};
while Agenda <> {} do
t:= min(Agenda);
Agenda:= Agenda minus {t};
R:= R union {t};
Agenda:= Agenda union (select(`<=`, map(s -> s*t+6, R), N) minus R);
od:
sort(convert(R, list)); # Robert Israel, Jan 03 2019
CROSSREFS
Sequence in context: A294871 A212969 A277712 * A131130 A099969 A241688
KEYWORD
nonn
STATUS
approved