OFFSET
0,2
COMMENTS
a(8) > 3*10^9 if it exists.
FORMULA
A001222(a(i) + a(j)) = j for 0 <= i < j.
EXAMPLE
a(3) = 66 because a(0) + 66 = 66 = 2*3*11, a(1) + 66 = 68 = 2*2*17, and a(2) + 66 = 70 = 2*5*7 all have 3 prime factors, counted with multiplicity, and 66 is the least number that works.
MAPLE
A:= [0]:
for i from 1 to 7 do
for x from 2^i do if andmap(t -> numtheory:-bigomega(t+x) = i, A) then
A:= [op(A), x]; break
fi od od:
A;
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Israel, Mar 21 2023
EXTENSIONS
a(8) from Daniel Suteu, Nov 08 2024
STATUS
approved