OFFSET
1,2
COMMENTS
a(n) = smallest m such that m is a multiple of n and in the prime factorization of m every prime between the smallest prime factor of n and the largest appears at least once.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
EXAMPLE
a(99)=a(3*3*11)=3*3*5*7*11=3465.
PROG
(Haskell)
a072941 n = product $ zipWith (^) ps $ map (max 1) es where
(ps, es) = unzip $ dropWhile ((== 0) . snd) $
zip a000040_list $ a067255_row n
-- Reinhard Zumkeller, Dec 21 2013
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Reinhard Zumkeller, Aug 12 2002
EXTENSIONS
Example corrected by Nadia Heninger, Jul 06 2005
STATUS
approved