OFFSET
1,1
COMMENTS
Submitted at the suggestion of T. D. Noe.
For any number k, the abundance of k^2 is an odd number.
From Amiram Eldar, Jan 16 2025: (Start)
The least term that is not divisible by 5 is a(75) = 9009.
The least term that is not divisible by 3 is a(296889) = 37182145.
The least term that is coprime to 15 is 3909612711980232366109. (End)
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
FORMULA
a(n) = sqrt(A156942(n)). - M. F. Hasler, Jan 26 2020
MATHEMATICA
fQ[n_] := Block[{ds = DivisorSigma[1, n^2] - 2 n^2}, ds > 0 && OddQ@ ds]; Select[ Range[1, 5353, 2], fQ@# &]
PROG
(PARI) is(n)=n%2 && sigma(n^2, -1)>2 \\ Charles R Greathouse IV, Feb 21 2017
(PARI) [2*k-1|k<-[1..6e3\2], sigma((2*k-1)^2, -1)>2] \\ M. F. Hasler, Jan 26 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Mar 30 2010
EXTENSIONS
Name corrected by T. D. Noe, Jul 09 2010
STATUS
approved