|
Search: id:A138652
|
|
|
| A138652 |
|
Consider the differences between adjacent divisors (ordered by size) of (2n). a(n) = the number of such differences that are divisors of (2n). |
|
+0 1
|
|
| 1, 2, 3, 3, 2, 5, 2, 4, 5, 5, 2, 7, 2, 4, 6, 5, 2, 8, 2, 6, 7, 4, 2, 9, 3, 4, 7, 5, 2, 11, 2, 6, 6, 4, 3, 11, 2, 4, 6, 7, 2, 10, 2, 6, 10, 4, 2, 11, 3, 8, 6, 6, 2, 11, 5, 6, 6, 4, 2, 15, 2, 4, 9, 7, 4, 9, 2, 6, 6, 8, 2, 14, 2, 4, 9, 6, 2, 11, 2, 8, 9, 4, 2, 15, 4, 4, 6, 6, 2, 17, 3, 6, 6, 4, 4, 13, 2, 6, 9
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
For n = any odd positive integer, there are no differences (between consecutive divisors of n) that divide n.
a(n) + A060763(2n) = A000005(2n)-1.
|
|
LINKS
|
Leroy Quet, Home Page (listed in lieu of email address)
|
|
MAPLE
|
A138652 := proc(n) local a, dvs, i ; a := 0 ; dvs := sort(convert(numtheory[divisors](2*n), list)) ; for i from 2 to nops(dvs) do if (2*n) mod ( op(i, dvs)-op(i-1, dvs) ) = 0 then a := a+1 ; fi ; od: a ; end: seq(A138652(n), n=1..120) ; - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 20 2008
|
|
MATHEMATICA
|
a = {}; For[n = 2, n < 200, n = n + 2, b = Table[Divisors[n][[i + 1]] - Divisors[n][[i]], {i, 1, Length[Divisors[n]] - 1}]; AppendTo[a, Length[Select[b, Mod[n, # ] == 0 &]]]]; a - Stefan Steinerberger (stefan.steinerberger(AT)gmail.com), May 18 2008
|
|
CROSSREFS
|
Cf. A060763.
Cf. A060741.
Sequence in context: A073078 A034799 A008985 this_sequence A131899 A095174 A131307
Adjacent sequences: A138649 A138650 A138651 this_sequence A138653 A138654 A138655
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Leroy Quet May 15 2008
|
|
EXTENSIONS
|
More terms from Stefan Steinerberger (stefan.steinerberger(AT)gmail.com) and R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 18 2008
|
|
|
Search completed in 0.002 seconds
|