OFFSET
1,1
COMMENTS
Also, this is the set of numbers n such that 9*floor((10/9)^(n+1))==10*floor((10/9)^n) (cf. A065566). For proof see Mathar link.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
R. J. Mathar, Proof of alternative characterization.
MAPLE
Res:= NULL: count:= 0:
v:= 1:
for n from 2 while count < 100 do
u:= floor((10/9)^n);
if 9*u = 10*v then count:= count+1; Res:= Res, n-1 fi;
v:= u;
od:
Res; # Robert Israel, Jul 10 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov and N. J. A. Sloane, May 20 2008, May 24 2008
STATUS
approved