OFFSET
0,2
COMMENTS
This sequence appears to be a "complete" (sic) sequence as defined in the Wikipedia link.
LINKS
Wikipedia, "Complete" sequence. [Wikipedia calls a sequence "complete" (sic) if every positive integer is a sum of distinct terms. This name is extremely misleading and should be avoided. - N. J. A. Sloane, May 20 2023]
EXAMPLE
a(0) = 1 because 1 is the next Ulam number after 2^(-1) = 1/2.
a(6) = 36 because 36 is the next Ulam number after 2^5 = 32.
MATHEMATICA
ulams={1, 2}; Do[AppendTo[ulams, n=Last[ulams]; While[n++; Length[DeleteCases[Intersection[ulams, n-ulams], n/2, 1, 1]]!= 2]; n], {10^4}]; lst=ulams; nextu[n_] := Module[{m = 1}, While[lst[[m]]<=n, m++]; lst[[m]]]; Join[{1}, Table[nextu[2^(n - 1)], {n, 1, 18}]]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Frank M Jackson, Sep 02 2021
EXTENSIONS
a(22)-a(31) from Amiram Eldar, Sep 02 2021
STATUS
approved