OFFSET
1,2
COMMENTS
Complement of A081330.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
A081326(a(n)) = 0.
EXAMPLE
For all 3-smooth numbers m<23 the greatest prime factor of 23-m is >3: 23-1=2*11, 23-2=3*7, 23-3=4*5, 23-2^2=19, 23-2*3=17, 23-2^3=3*5, 23-3^2=2*7, 23-3*2^2=11, 23-2^4=7, 23-2*3^2=5, therefore 23 is a term.
MATHEMATICA
max = 300; Complement[Range[max], Table[2^i*3^j + 2^k*3^l, {i, 0, Log[2, max] // Ceiling}, {j, 0, Log[3, max] // Ceiling}, {k, 0, Log[2, max] // Ceiling}, {l, 0, Log[3, max] // Ceiling}] // Flatten // Union // Select[#, # <= max& ]& ] (* Jean-François Alcover, Sep 10 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 19 2003
STATUS
approved