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!)
A323441 Numbers equal to the sum of the numbers between two of their divisors. 1
12, 30, 60, 90, 108, 180, 234, 240, 390, 408, 420, 462, 480, 490, 630, 756, 840, 880, 900, 945, 1122, 1218, 1248, 1430, 1500, 1512, 1560, 1584, 1998, 2070, 2100, 2310, 2460, 2520, 2652, 2660, 2970, 3306, 3330, 3528, 3780, 3960, 4004, 4032, 4134, 4140, 4275, 4788 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A303556 is a subsequence of this sequence.
LINKS
EXAMPLE
Divisors of 12 are 1, 2, 3, 4, 6, 12 and the sum of the numbers between 2 and 6 is 3 + 4 + 5 = 12.
Divisors of 108 are 1, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54, 108 and the sum of the numbers between 9 and 18 is 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 = 108.
MAPLE
with(numtheory): P:=proc(n) local a, j, k; a:=sort([op(divisors(n))]);
for j from 1 to nops(a)-1 do for k from j+1 to nops(a) do
if n=((a[k]-1)*a[k]-a[j]*(a[j]+1))/2 then RETURN(n); fi;
od; od; end: seq(P(i), i=2..10^4);
MATHEMATICA
Select[Range[5000], MemberQ[Union@ Map[Total@ Range[#1 + 1, #2 - 1] & @@ # &, Subsets[Divisors@ #, {2}]], #] &] (* Michael De Vlieger, Jan 18 2019 *)
CROSSREFS
Sequence in context: A286497 A086830 A084699 * A064483 A365277 A322181
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Jan 15 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 April 23 02:23 EDT 2024. Contains 371906 sequences. (Running on oeis4.)