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!)
A209291 Sum of the refactorable numbers less than or equal to n. 1

%I #27 Dec 03 2019 03:01:33

%S 1,3,3,3,3,3,3,11,20,20,20,32,32,32,32,32,32,50,50,50,50,50,50,74,74,

%T 74,74,74,74,74,74,74,74,74,74,110,110,110,110,150,150,150,150,150,

%U 150,150,150,150,150,150,150,150,150,150,150,206,206,206,206,266

%N Sum of the refactorable numbers less than or equal to n.

%C A number is refactorable if it is divisible by the number of its divisors.

%C The first 8 terms are odd. The next odd term after 11 is a(225) = 2395.

%C 600 out of the first 1000 terms are odd, including every term from a(625) up to and including a(1000). - _Harvey P. Dale_, Aug 07 2019

%H Harvey P. Dale, <a href="/A209291/b209291.txt">Table of n, a(n) for n = 1..1000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RefactorableNumber.html">Refactorable Number</a>

%F a(n) = Sum_{i=1..n} i*(1 + floor(i/d(i)) - ceiling(i/d(i))) where d(n) is the number of divisors of n (A000005).

%p with(numtheory); a:= n -> add(i * (1 + floor(i/tau(i)) - ceil(i/tau(i))), i = 1..n):

%t Accumulate[Table[If[Divisible[n,DivisorSigma[0,n]],n,0],{n,60}]] (* _Harvey P. Dale_, Aug 07 2019 *)

%Y Cf. A033950, A000005, A141586, A057265, A036896, A036898, A114617.

%K nonn

%O 1,2

%A _Wesley Ivan Hurt_, Jan 16 2013

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 19 23:12 EDT 2024. Contains 375310 sequences. (Running on oeis4.)