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

A063731
Numbers k such that Sum_{j=1..k} sigma(j) divides Product_{j=1..k} sigma(j).
1
1, 5, 8, 15, 50, 52, 53, 55, 63, 68, 72, 96, 103, 157, 176, 196, 211, 219, 287, 288, 302, 303, 321, 327, 348, 360, 364, 365, 381, 402, 417, 421, 430, 431, 438, 444, 452, 454, 465, 472, 478, 504, 506, 512, 514, 530, 531, 534, 555, 565, 576, 584, 588, 594, 607
OFFSET
1,2
LINKS
PROG
(PARI) for(n=1, 300, a=sum(k=1, n, sigma(k)); b=prod(k=1, n, sigma(k)); if(Mod(b, a)==0, print(n)))
(PARI) { n=0; a=0; b=1; for (m=1, 10^9, a+=sigma(m); b*=sigma(m); if (b%a==0, write("b063731.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 28 2009
CROSSREFS
Sequence in context: A259724 A259585 A220034 * A129316 A039752 A141536
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Aug 12 2001
EXTENSIONS
More terms from Matthew Conroy, Aug 21 2001
STATUS
approved