A156942 Odd abundant numbers whose abundance is odd.
11025, 99225, 245025, 275625, 342225, 540225, 893025, 1334025, 1863225, 2205225, 2480625, 3080025, 3186225, 3980025, 4601025, 4862025, 5832225, 6125625, 6890625, 7868025, 8037225, 8555625, 9272025, 9828225, 10595025, 10989225
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Robert G. Wilson v)
Crossrefs
Programs
-
Mathematica
fQ[n_] := Block[{ds = DivisorSigma[1, n] - 2 n}, ds > 0 && OddQ@ ds]; Select[ Range[1, 12006223, 2], fQ @# &]
-
PARI
is(n)=my(s=sigma(n)); n%2 && s>2*n && (s-2*n)%2 \\ Charles R Greathouse IV, Feb 21 2017
Formula
a(n) = A174830(n)^2. - M. F. Hasler, Jan 26 2020
Extensions
Edited by Robert G. Wilson v at the suggestion of T. D. Noe, Mar 30 2010
Comments