|
| |
|
|
A110795
|
|
Least multiple of n! that leaves a palindrome if trailing zeros are ignored.
|
|
2
| |
|
|
1, 2, 6, 600, 600, 25200, 25200, 483840, 698867688960, 6988676889600, 293599799539200, 489718781798400, 48196817186918400, 4091568555865190400, 84446094349064448000, 2308054967694508032000
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| a(8) = 483840= 8!*12, ignoring the trailing zero gives 48384 which is a palindrome.
|
|
|
MAPLE
| A004151 := proc(n) local a ; a := n ; while a mod 10 = 0 do a := a/10 ; end: RETURN(a); end: isA002113 := proc(n) local digs, i ; digs := convert(n, base, 10) ; for i from 1 to nops(digs)/2 do if op(i, digs) <> op(-i, digs) then RETURN(false) ; fi ; od; RETURN(true) ; end: A110795 := proc(n) local nf, k ; nf := n! ; k := 1 ; while not isA002113(A004151(k*nf)) do k := k+1 ; od: RETURN(k*nf) ; end: seq(A110795(n), n=1..9) ; - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 17 2007
|
|
|
CROSSREFS
| Cf. A110796.
Sequence in context: A135424 A132495 A112724 * A179860 A067107 A180492
Adjacent sequences: A110792 A110793 A110794 * A110796 A110797 A110798
|
|
|
KEYWORD
| base,more,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Aug 13 2005
|
|
|
EXTENSIONS
| Corrected and extended by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Aug 17 2007
a(11)-a(13) from Donovan Johnson (donovan.johnson(AT)yahoo.com), Nov 15 2009
a(14)-a(16) from Donovan Johnson (donovan.johnson(AT)yahoo.com), Feb 01 2011
|
| |
|
|