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

A206026
a(n) = smallest number m such that sigma(k) = m has at least n positive solutions k.
2
1, 12, 24, 72, 72, 168, 240, 336, 360, 504, 576, 720, 720, 720, 720, 1440, 1440, 1440, 1440, 1440, 1440, 2880, 2880, 2880, 2880, 2880, 2880, 2880, 2880, 4320, 4320, 4320, 4320, 4320, 4320, 5760, 5760, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640
OFFSET
1,2
COMMENTS
Sequence of numbers from A145899.
EXAMPLE
a(6) = 168 because 168 is the smallest value of sigma(k) for n = 6 positive integers k such that sigma(k) = 168 has solution; k = 60, 78, 92, 123, 143, 167.
PROG
(PARI) list(len) = {my(v = vector(len), k = 1, c = 0, i); while(c < len, i = invsigmaNum(k); for(j = 1, i, if(j <= len && v[j] == 0, v[j] = k; c++)); k++); v; } \\ Amiram Eldar, Dec 15 2024, using Max Alekseyev's invphi.gp
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Feb 03 2012
STATUS
approved