Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A132378
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A132378 Smallest integer that starts with n and is divisible by every nonzero digit of n. +0
1
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 132, 140, 15, 162, 175, 184, 198, 20, 210, 22, 234, 24, 250, 264, 2702, 280, 2916, 30, 312, 324, 33, 348, 3510, 36, 378, 384, 396, 40, 412, 420, 432, 44, 4500, 468, 476, 48, 4932, 50, 510, 520, 5310, 540, 55, 5610, 5705, 5800, 5940 (list; graph; listen)
OFFSET

1,2

COMMENT

Note that a number that starts with n and is divisible by lcm(1, 2, ..., 9) = 2520 always satisfies the conditions. And there is such a number between n0000 and n2519. Therefore a(n) < 10000n + 2520. Hence to find a(n) one needs to check numbers n, n0..n9, n00..n99, n000..n999, n0000..n2519.

LINKS

TopCoder problem DivisibleByDigits

PROGRAM

lcm = lcm(all non-zero digits of n) for (p10 = 1; ; p10 *= 10) { for (suffix = 0; suffix < p10; suffix++) { m = n * p10 + suffix; if (m % lcm == 0) return m; } }

CROSSREFS

Sequence in context: A004863 A055648 A004874 this_sequence A043317 A044914 A004885

Adjacent sequences: A132375 A132376 A132377 this_sequence A132379 A132380 A132381

KEYWORD

base,easy,nonn

AUTHOR

Mikhail Dvorkin (mikhail.dvorkin(AT)gmail.com), Nov 10 2007

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 3 01:16 EST 2008. Contains 151161 sequences.


AT&T Labs Research