[go: up one dir, main page]

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!)
Revision History for A002131 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A002131 Sum of divisors d of n such that n/d is odd.
(history; published version)
#128 by N. J. A. Sloane at Sun Jul 02 13:37:48 EDT 2023
STATUS

proposed

approved

#127 by Michael Somos at Sat Jul 01 17:34:53 EDT 2023
STATUS

editing

proposed

#126 by Michael Somos at Sat Jul 01 17:34:36 EDT 2023
FORMULA

Expansion of (-1/2) x (d phi(-x) / dx) / phi(-x) in powers of x where phi() is a Ramanujan theta function. - Michael Somos, Jul 01 2023

STATUS

approved

editing

Discussion
Sat Jul 01 17:34
Michael Somos: Added more info.
#125 by Charles R Greathouse IV at Thu Sep 08 08:44:29 EDT 2022
PROG

(MAGMAMagma) [&+[d:d in Divisors(m)|IsOdd(Floor(m/d))] :m in [1..75]]; // Marius A. Burtea, Aug 12 2019

Discussion
Thu Sep 08 08:44
OEIS Server: https://oeis.org/edit/global/2944
#124 by Alois P. Heinz at Fri Dec 17 16:46:04 EST 2021
STATUS

proposed

approved

#123 by Chai Wah Wu at Fri Dec 17 15:38:58 EST 2021
STATUS

editing

proposed

#122 by Chai Wah Wu at Fri Dec 17 15:38:49 EST 2021
PROG

(Python)

from math import prod

from sympy import factorint

def A002131(n): return prod(p**e if p == 2 else (p**(e+1)-1)//(p-1) for p, e in factorint(n).items()) # Chai Wah Wu, Dec 17 2021

STATUS

approved

editing

#121 by N. J. A. Sloane at Mon Jan 11 23:18:04 EST 2021
STATUS

proposed

approved

#120 by Peter Bala at Sun Jan 10 07:00:31 EST 2021
STATUS

editing

proposed

#119 by Peter Bala at Sun Jan 10 06:22:37 EST 2021
FORMULA

a(2*n) = 2*a(n); a(2*n+1) = A008438(n).). (End)

The sequence (a(2*n+1)) = [1, 4, 6, 8, 13, 12, 14, ...] appears to have the g.f. Sum_{n = -oo..oo} x^(3*n+1)/(1 - x^(2*n+1))^2. (End)

CROSSREFS

A diagonal of A060047. Bisection A008438.

STATUS

proposed

editing

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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)