(Translated by https://www.hiragana.jp/)
The On-Line Encyclopedia of Integer Sequences (OEIS)
login

Revision History for A061816

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Obtain m by omitting trailing zeros from n (cf. A004151); a(n) = smallest multiple k*m which is a palindrome.
(history; published version)
#11 by N. J. A. Sloane at Sun Aug 11 14:41:33 EDT 2024
LINKS

P. De Geest, <a href="httphttps://www.worldofnumbers.com/em36.htm">Smallest multipliers to make a number palindromic</a>.

Discussion
Sun Aug 11
14:41
OEIS Server: https://oeis.org/edit/global/2998
#10 by Alois P. Heinz at Sun Feb 15 16:33:37 EST 2015
STATUS

proposed

approved

#9 by Jon E. Schoenfield at Sun Feb 15 16:12:10 EST 2015
STATUS

editing

proposed

#8 by Jon E. Schoenfield at Sun Feb 15 16:12:07 EST 2015
COMMENTS

Every integer n has a multiple of the form 99...9900...00. To see that n has a multiple that's a palindrome (allowing 0's on the left) with even digits, let 9n divide 99...9900...00; then n divides 22...2200...00. - Dean Hickerson, Jun 29, 2001.

STATUS

approved

editing

#7 by N. J. A. Sloane at Tue Jun 24 13:56:06 EDT 2014
STATUS

editing

approved

#6 by N. J. A. Sloane at Tue Jun 24 13:55:58 EDT 2014
COMMENTS

Every integer n has a multiple of the form 99...9900...00. To see that n has a multiple that's a palindrome (allowing 0's on the left) with even digits, let 9n divide 99...9900...00; then n divides 22...2200...00. - _Dean Hickerson, _, Jun 29, 2001.

STATUS

approved

editing

#5 by Russ Cox at Fri Mar 30 17:27:33 EDT 2012
AUTHOR

_Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), _, Jun 25 2001

Discussion
Fri Mar 30
17:27
OEIS Server: https://oeis.org/edit/global/145
#4 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
COMMENTS

Every positive integer is a factor of a palindrome, unless it is a multiple of 10 (D. G. Radcliffe, see Linkslinks).

KEYWORD

base,easy,nonn,new

#3 by N. J. A. Sloane at Sat Jun 12 03:00:00 EDT 2004
PROG

(ARIBAS): stop := 200000; for n := 0 to maxarg do k := 1; test := true; while test and k < stop do mp := omit_trailzeros(n)*k; if test := mp <> int_reverse(mp) then inc(k); end; end; if k < stop then write(mp, " "); else write(-1, " "); end; end;

KEYWORD

base,easy,nonn,new

#2 by N. J. A. Sloane at Sat Sep 13 03:00:00 EDT 2003
NAME

Obtain m by omitting trailing zeros from n (cf. A004151); a(n) = smallest multiple k*m which is a palindrome.

KEYWORD

base,easy,nonn,new