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”).

A161658
a(n) = the largest multiple of {the sum of the prime-factorization exponents of n} that is <= n.
2
0, 2, 3, 4, 5, 6, 7, 6, 8, 10, 11, 12, 13, 14, 14, 16, 17, 18, 19, 18, 20, 22, 23, 24, 24, 26, 27, 27, 29, 30, 31, 30, 32, 34, 34, 36, 37, 38, 38, 40, 41, 42, 43, 42, 45, 46, 47, 45, 48, 48, 50, 51, 53, 52, 54, 56, 56, 58, 59, 60, 61, 62, 63, 60, 64, 66, 67, 66, 68, 69, 71, 70, 73, 74, 75, 75, 76, 78
OFFSET
1,2
LINKS
FORMULA
a(n) = n - (n mod A001222(n)), n >= 1. - R. J. Mathar, Jul 08 2011
MAPLE
A161658 := proc(n) if n = 1 then 0; else e := numtheory[bigomega](n) ; n - (n mod e) ; end if; end proc: # R. J. Mathar, Jul 08 2011
CROSSREFS
Cf. A161659.
Sequence in context: A337642 A373227 A331303 * A066853 A264856 A141258
KEYWORD
nonn
AUTHOR
Leroy Quet, Jun 15 2009
STATUS
approved