login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A327599 Odd numbers k that have a divisor d such that sigma(d)*d is equal to k. 3
1, 117, 775, 2793, 9801, 16093, 30927, 88723, 90675, 137541, 292537, 326781, 488125, 732511, 796797, 954273, 1882881, 1926183, 2164575, 2896363, 3500157, 3618459, 4985713, 6725201, 7595775, 8042167, 10380591, 12326221, 12472075, 14076543, 16092297, 20456373, 23968425, 25774633 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
We need d and sigma(d) odd which happens precisely when d is an odd square.
LINKS
EXAMPLE
As 9 * sigma(9) = 9 * (1 + 3 + 9) = 9 * 13 = 117 is odd, 117 is in the sequence.
MATHEMATICA
Select[2Range[0, 9999] + 1, MemberQ[(DivisorSigma[1, #] * # &)/@Divisors[#], #] &] (* Alonso del Arte, Sep 18 2019 *)
PROG
(PARI) upto(n) = {my(res = List()); forstep(i = 1, sqrtnint(n, 4), 2, c = i^2*sigma(i^2); if(c <= n, listput(res, c))); listsort(res, 1); res}
CROSSREFS
Odd terms of A327165.
Cf. A064987.
Sequence in context: A217798 A252853 A273125 * A326064 A233376 A233051
KEYWORD
nonn
AUTHOR
David A. Corneth, Sep 18 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)