login
A218534
Denominators of the ratios of consecutive terms in A176352.
3
2, 3, 1, 4, 1, 5, 1, 6, 3, 1, 5, 2, 5, 7, 2, 3, 1, 8, 1, 7, 3, 7, 2, 9, 4, 5, 3, 4, 2, 10, 3, 5, 9, 6, 1, 11, 1, 8, 1, 12, 7, 5, 8, 1, 9, 7, 4, 10, 5, 7, 9, 4, 11, 6, 3, 13, 1, 5, 14, 3, 11, 2, 1, 15, 11, 2, 13, 1, 13, 4, 13, 3, 16, 7, 9, 4, 11, 6, 7, 8, 1
OFFSET
1,1
COMMENTS
a(n) = denominator of A176352(n) / A176352(n+1).
LINKS
FORMULA
a(n) = A176352(n+1) / A218535(n).
PROG
(Haskell)
import Data.Ratio ((%), denominator)
a218534 n = a176352 (n + 1) `div` a218535 n
a218534_list = map denominator $ zipWith (%) a176352_list $ tail a176352_list
CROSSREFS
Cf. A218533 (numerator).
Sequence in context: A002946 A286477 A277230 * A241773 A348388 A205790
KEYWORD
nonn,frac
AUTHOR
Reinhard Zumkeller, Nov 10 2012
STATUS
approved