|
|
A112752
|
|
Greatest common divisors of consecutive terms of numbers of the form 3^i*5^j.
|
|
2
|
|
|
1, 1, 1, 3, 5, 1, 9, 15, 3, 1, 5, 45, 9, 3, 15, 5, 25, 27, 9, 45, 15, 75, 81, 1, 125, 135, 45, 225, 243, 3, 375, 405, 5, 625, 675, 729, 9, 1125, 1215, 15, 1875, 2025, 2187, 1, 3125, 3375, 3645, 45, 5625, 6075, 6561, 3, 9375, 10125, 10935, 5, 15625, 16875, 18225
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,4
|
|
LINKS
|
Amiram Eldar, Table of n, a(n) for n = 1..10000
|
|
FORMULA
|
a(n) = gcd(A003593(n), A003593(n+1)).
|
|
MATHEMATICA
|
s = {}; m = 12; Do[n = 5^k; While[n <= 5^m, AppendTo[s, n]; n *= 3], {k, 0, m}]; Map[GCD @@ # &, Partition[Union[s], 2, 1]] (* Amiram Eldar, Feb 06 2020 *)
|
|
CROSSREFS
|
Cf. A003593, A112757.
Sequence in context: A054586 A214229 A214728 * A101035 A204029 A026253
Adjacent sequences: A112749 A112750 A112751 * A112753 A112754 A112755
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Reinhard Zumkeller, Sep 18 2005
|
|
STATUS
|
approved
|
|
|
|