OFFSET
1,1
COMMENTS
Bugeaud proves that the largest prime factor in a(n) increases without bound; in particular, for any e > 0 and all large n, the largest prime factor in a(n) is (1-e) * log log a(n) * log log log a(n) / log log log log a(n). So the largest prime factor in a(n) is more than k log n log log n/log log log n for any k < 1/3 and large enough n.
It appears that a(1293) = 4096 is the largest power of 2 in the sequence, a(1349) = 4608 is the largest 3-smooth number in this sequence, a(1598) = 6075 is the largest 5-smooth number in this sequence, a(5746) = 500094 is the largest 7- and 11-smooth number in this sequence, a(9158) = 5010005 is the largest 13-smooth member in this sequence, etc.
LINKS
Yann Bugeaud, On the digital representation of integers with bounded prime factors, Osaka J. Math. 55 (2018), 315-324; arXiv:1609.07926 [math.NT], 2016.
MATHEMATICA
Select[Range[111, 175], Length[Select[IntegerDigits[#], Positive]]==3&&Mod[#, 10]!=0 &] (* Stefano Spezia, Jan 15 2023 *)
PROG
(PARI) list(lim)=my(v=List()); for(d=3, #Str(lim\=1), my(A=10^(d-1)); forstep(a=A, 9*A, A, for(i=1, d-2, my(B=10^i); forstep(b=a+B, a+9*B, B, for(n=b+1, b+9, if(n>lim, return(Vec(v))); listput(v, n)))))); Vec(v)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Charles R Greathouse IV, Jan 09 2023
STATUS
approved