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!)
A188649 Least common multiple of reversals of divisors of n in decimal representation. 6
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 84, 31, 574, 255, 488, 71, 162, 91, 20, 84, 22, 32, 168, 260, 62, 72, 1148, 92, 510, 13, 11224, 33, 6106, 1855, 2268, 73, 15106, 93, 40, 14, 6888, 34, 44, 4590, 64, 74, 10248, 658, 260, 1065, 3100, 35, 3240, 55, 149240, 6825, 7820, 95, 7140, 16, 26, 252, 11224, 8680, 66, 76, 12212, 96, 152110, 17, 4536, 37, 6862, 251940, 2024204, 77 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(A000040(n)) = A004087(n);
a(A002385(n)) = A002385(n), see A188650 for all fixed points.
EXAMPLE
Divisors(42) = {1,2,3,6,7,14,21,42}, therefore a(42) = lcm(1,2,3,6,7,41,12,24) = 6888.
PROG
(Haskell)
a188649 n = foldl lcm 1 $ map a004086 $ filter ((== 0) . mod n) [1..n]
(PARI) a(n) = lcm(apply(x->fromdigits(Vecrev(digits(x))), divisors(n))); \\ Michel Marcus, Mar 13 2018
(Python)
from math import lcm
from sympy import divisors
def a(n): return lcm(*(int(str(d)[::-1]) for d in divisors(n)))
print([a(n) for n in range(1, 78)]) # Michael S. Branicky, Aug 14 2022
CROSSREFS
Cf. A003990 (LCM), A027750 (divisors), A004086 (reversal), A188650.
Sequence in context: A062279 A088599 A004862 * A068634 A049872 A239218
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Apr 11 2011
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 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)