OFFSET
1,1
COMMENTS
Conjecture: Unlike A004050, which has a limited set of integers expressible in more than one way, this set has no such limit.
Number of terms less than or equal to 10^k, k > 0: 8, 56, 238, 615, 1304, 2169, 3606, 5280, 7196, 10414, ....
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
Diego Marques and Alain Togbé, Fibonacci and Lucas numbers of the form 2^a + 3^b + 5^c, Proc. Japan Acad. Ser. A Math. Sci. 89(3): 47-50 (March 2013).
FORMULA
There are O(log^3 x) terms of the sequence up to x. - Charles R Greathouse IV, Oct 28 2022
MATHEMATICA
mx = 140; Union@ Flatten@ Table[2^i + 3^j + 5^k, {i, 0, Log[2, mx]}, {j, 0, Log[3, mx - 2^i]}, {k, 0, Log[5, mx - 2^i - 3^j]}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 20 2012
STATUS
approved