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!)
A266227 a(n) = floor(Sum_{d|n} 1/sigma(d)). 9
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,60
COMMENTS
Sequence of numbers n such that floor(Sum_{d|n} 1/sigma(d)) = k for k = 1, 2, 3:
k = 1: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, ... (A265711);
k = 2: 60, 72, 84, 90, 120, 144, 168, 180, 210, 216, 240, 252, ... (A265712);
k = 3: 110880, 166320, 221760, 277200, 327600, 332640, 360360, ... (A265713).
LINKS
FORMULA
a(n) = floor(Sum_{d|n} 1/A000203(d)).
a(n) = floor(A265708(n) / A069934(n)) = floor(A265709(n) / A265710(n)).
EXAMPLE
For n = 6; a(6) = floor(Sum_{d|6} 1/sigma(d)) = floor(1/1 + 1/3 + 1/4 + 1/12) = floor(5/3) = 1.
MATHEMATICA
A266227[n_] := Floor[DivisorSum[n, 1/DivisorSigma[1, #]&]];
Array[A266227, 100] (* Paolo Xausa, Feb 06 2024 *)
PROG
(Magma) [Floor(&+[1/SumOfDivisors(d): d in Divisors(n)]): n in [1..100]]
(PARI) A266227(n) = { my(s=sumdiv(n, d, 1/sigma(d))); (numerator(s) \ denominator(s)); }; \\ Antti Karttunen, Nov 19 2017
CROSSREFS
Sequence in context: A353801 A333254 A204162 * A043285 A353756 A245690
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Dec 24 2015
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 April 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)