|
| |
|
|
A127611
|
|
a(n) = numerator of the continued fraction which has the positive divisors of n as its terms.
|
|
2
| |
|
|
1, 3, 4, 13, 6, 63, 8, 107, 37, 163, 12, 3259, 14, 311, 319, 1725, 18, 10449, 20, 13928, 613, 751, 24, 638475, 151, 1043, 1003, 37306, 30, 1513023, 32, 55307, 1489, 1771, 1511, 19381852, 38, 2207, 2071, 4538318, 42, 5649833, 44, 142046, 131413, 3223, 48
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| The divisors can be written either from largest to smallest or from smallest to largest and the numerator of the continued fraction would remain unchanged.
|
|
|
EXAMPLE
| The divisors of 6 are 1,2,3,6. So a(6) is the numerator of 1 +1/(2 +1/(3 +1/6)) = 63/44. a(6) is also the numerator of 6 +1/(3 +1/(2+1/1)) = 63/10.
|
|
|
MATHEMATICA
| f[n_] := Numerator[FromContinuedFraction[Divisors[n]]]; Table[f[n], {n, 47}] (*Chandler*)
|
|
|
CROSSREFS
| Cf. A127612, A127613.
Sequence in context: A127690 A092417 A071543 * A082197 A138101 A095790
Adjacent sequences: A127608 A127609 A127610 * A127612 A127613 A127614
|
|
|
KEYWORD
| frac,nonn
|
|
|
AUTHOR
| Leroy Quet Jan 19 2007
|
|
|
EXTENSIONS
| Extended by Ray Chandler (rayjchandler(AT)sbcglobal.net), Jan 22 2007
|
| |
|
|