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

A115174
Numbers that are not the sum of a square, a nonnegative cube and a power of 2.
9
15, 22, 23, 55, 62, 87, 94, 106, 111, 118, 119, 120, 139, 167, 183, 188, 194, 195, 211, 215, 223, 244, 246, 251, 263, 274, 275, 279, 286, 303, 304, 307, 309, 311, 314, 330, 331, 335, 342, 343, 350, 398, 399, 419, 421, 434, 436, 437, 438, 454, 455, 461, 463
OFFSET
1,1
COMMENTS
The square and the cube may be equal to 0, the powers of two starts at 2^0 = 1.
There are 531362099 such numbers up to 10^9, the last one in this range being 999999999.
LINKS
MAPLE
N:= 1000: # for terms <= N
S1:= {seq(i^2, i=0..isqrt(N))}:
S2:= {seq(i^3, i=0..floor(N^(1/3)))}:
S3:= {seq(2^i, i=0..ilog2(N))}:
S:= select(`<=`, {seq(seq(seq(a+b+c, a=S1), b=S2), c=S3)}, N):
sort(convert({$1..N} minus S, list)); # Robert Israel, Jul 23 2020
MATHEMATICA
Complement[Range[1000], Plus @@@ Tuples[{Range[0, 34]^2, Range[0, 10]^3, 2^Range[0, 9]}]] (* Giovanni Resta, May 02 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Resta, Jan 15 2006
EXTENSIONS
Name corrected by Giovanni Resta, May 02 2016
STATUS
approved