OFFSET
1,1
COMMENTS
Are there finitely many non-multiples of 10 in this sequence? a(72) = 7875 seems to be the last one. - Charles R Greathouse IV, Feb 08 2011
EXAMPLE
15 is a term because 15*7 = 105, and 105 can be formed from 15 by inserting the digit 0 in the middle.
PROG
(PARI) sub(v, u)=my(j=1); if(#v==#u, return(0)); for(i=1, #v, if(v[i]!=u[j], if(i!=j, return(0)), j++)); 1
isA185867(n)=my(N=eval(Vec(Str(n)))); for(k=2, 9, if(sub(eval(Vec(Str(n*k))), N), return(k))); 0
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paul Richards, Feb 05 2011
EXTENSIONS
Program and a(22)-a(45) from Charles R Greathouse IV, Feb 08 2011
STATUS
approved