OFFSET
1,1
COMMENTS
This sequence can be seen as the union of 99 linear sequences of the form a_i*k+i, for i=1,...,99 and k>0, where a_i depends on i. For example, 100*k+1, 100*k+2, 300*k+3,..., 4700*k+94, 1900*k+95,..., 9900*k+99. Hence, in analogy with A034709, there exist two numbers p and q such that a(p*k+i) = q*k + a(i), where q <= lcm(1,2,...,99). - Giovanni Resta, Aug 20 2015
MATHEMATICA
Select[Range[100, 1000], Quiet@ Divisible[#, Mod[#, 100]] &] (* Giovanni Resta, Aug 19 2015 *)
PROG
(PARI) isok(n) = (n>100) && (dd = n % 100) && !(n % dd); \\ Michel Marcus, Aug 19 2015
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Giovanni Teofilatto, Aug 19 2015
EXTENSIONS
More terms from Michel Marcus, Aug 19 2015
STATUS
approved
