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

A114075
Numbers k such that sigma(k) times k is a cube.
0
1, 1782, 334800, 2444904, 7555120020, 134099750400, 850719298000
OFFSET
1,2
COMMENTS
a(8) > 10^12. 200658615201408, 3363643228414950, 6948811926784000, 19056112275200000, 30426038892288000, 63849739291816140, 178779270017085192 and 183497385478330368 are also terms. - Donovan Johnson, May 13 2013
EXAMPLE
sigma(2444904) * 2444904 = 21300003648000 = 27720^3.
PROG
(PARI) is(n)=ispower(n*sigma(n), 3) \\ Charles R Greathouse IV, May 09 2013
(PARI) k=963761198400; rt=sigma(k)/k; for(m=1, 179046067, c=m^3; sr=sqrtint(c); fordiv(c, d, d2=c\d; if(d2/d>rt, next); if(d>sr, next(2)); if(sigma(d)==d2, print(d)))) \\ Donovan Johnson, May 13 2013
CROSSREFS
Sequence in context: A255157 A175693 A317628 * A232315 A013593 A152943
KEYWORD
nonn,more
AUTHOR
Giovanni Resta, Feb 13 2006
EXTENSIONS
a(5)-a(6) from Donovan Johnson, May 11 2013
a(7) from Giovanni Resta and Donovan Johnson, May 13 2013
STATUS
approved