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

A130698
Numbers n such that the sum of the sum-of-divisors function of all integers up to n is a square.
2
1, 2, 53, 174, 299, 1377, 12695, 44469, 423922, 2068248, 12084331, 46270468, 1330157705, 5319721272, 144083207084, 178358383042, 212557463865, 2125965021380, 6323865789846, 7277308988873
OFFSET
1,2
COMMENTS
It is not known if this sequence is infinite.
a(15) > 10^11. - Donovan Johnson, Mar 17 2011
The standard heuristic suggests this sequence is infinite with logarithmic density. - Charles R Greathouse IV, Feb 04 2013
FORMULA
n such that sigma(1)+sigma(2)+...+sigma(n) = x^2 with some integer x.
EXAMPLE
a(2) = 2 since sigma(1) = 1^2 and sigma(1)+sigma(2) = 2^2.
MATHEMATICA
L=0; For[j = 1, j < 1000000, j++, L = L + DivisorSigma[1, j]; If[L == Floor[Sqrt[L]]^2, Print[j, " ", Floor[Sqrt[L]]]]]
PROG
(PARI) s=0; for(n=1, 1e6, if(issquare(s+=sigma(n)), print1(n", "))) \\ Charles R Greathouse IV, Feb 04 2013
CROSSREFS
Cf. A024916, A062407 (for the resulting squares).
Sequence in context: A249661 A249662 A249663 * A364080 A248988 A248989
KEYWORD
nonn,more
AUTHOR
Florian Luca (fluca(AT)matmor.unam.mx), Jul 11 2007
EXTENSIONS
a(10)-a(13) from Donovan Johnson, Dec 02 2009
a(14) from Donovan Johnson, Mar 17 2011
Name revised by Charles R Greathouse IV, Feb 04 2013
a(15)-a(20) from Giovanni Resta, Nov 22 2019
STATUS
approved