login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226219 Least k > 1 not a power of 10 such that n is a substring of k*n. 1
2, 11, 6, 11, 6, 3, 6, 11, 6, 11, 11, 101, 26, 87, 51, 21, 26, 69, 51, 63, 6, 58, 51, 97, 26, 5, 51, 101, 26, 79, 11, 101, 26, 101, 51, 21, 26, 101, 51, 87, 6, 59, 34, 101, 26, 21, 51, 74, 26, 51, 3, 69, 26, 29, 51, 21, 26, 101, 51, 27, 6, 92, 51, 26, 26, 21 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) <= 10^A055642(n)+1.
MATHEMATICA
Table[k = 2; While[IntegerQ[Log[10, k]] || StringPosition[ToString[k*n], ToString[n], 1] == {}, k++]; k, {n, 0, 100}] (* T. D. Noe, May 31 2013 *)
PROG
(Perl) sub a {
my $n = shift;
my $k = 2;
while (1) {
if ($k !~ /^10+$/) {
if (index($k*$n, $n)>=0) {
return $k;
}
}
$k++;
}
}
(Haskell)
import Data.List (isInfixOf, isPrefixOf)
a226219 n = head [k | k <- [2..],
isInfixOf (show n) (show (k*n)), not $ p10 k]
where p10 = flip isPrefixOf ('1' : repeat '0') . show :: Int -> Bool
-- Reinhard Zumkeller, May 31 2013
CROSSREFS
Cf. A045537.
Sequence in context: A158616 A127821 A114724 * A285866 A165768 A323783
KEYWORD
base,nonn
AUTHOR
Paul Tek, May 31 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 13:41 EDT 2024. Contains 371970 sequences. (Running on oeis4.)