login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A181720
a(n) = smallest multiple of n which contains its base 10 reversal as a substring.
2
1, 2, 3, 4, 5, 6, 7, 8, 9, 1010, 11, 216, 312, 1414, 510, 1616, 714, 810, 912, 1020, 126, 22, 322, 2424, 525, 624, 729, 1820, 928, 3030, 713, 2304, 33, 3434, 3535, 3636, 1073, 836, 936, 1040, 1148, 924, 344, 44, 540, 644, 1974, 384, 294, 1050, 153, 2548, 3551, 1458, 55, 5656, 4275, 1856, 295, 3060
OFFSET
1,2
COMMENTS
Leading 0's are kept in the reversal: e.g., a(10)=1010, not 10.
LINKS
PROG
(Perl) foreach $n(1..60) {$r=reverse($_=$n); $_+=$n until m/$r/; print "$n $_\n"} # Ivan Neretin, Aug 12 2015
CROSSREFS
Cf. A181721 (a(n)/n).
Sequence in context: A121939 A276697 A087036 * A349423 A004904 A122624
KEYWORD
nonn,base
AUTHOR
Claudio Meller, Nov 17 2010
EXTENSIONS
Edited by D. S. McNeil, Nov 17 2010
STATUS
approved