login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A059514
For a rational number p/q let f(p/q) = p*q divided by (the sum of digits of p and of q) minus 1; a(n) is obtained by iterating f, starting at n/1, until an integer is reached, or if no integer is ever reached then a(n) = 0.
2
1, 1, 1, 1, 1, 1, 1, 1, 1, 10, 11, 4, 28, 42, 7315, 208, 136, 2, 19, 10, 7, 11, 69, 4, 2310, 28, 3, 42, 319, 10, 189885850, 96, 11, 323323, 205530, 4, 37, 228, 28, 10, 123, 7, 559, 11, 5, 69, 517, 4, 152152, 10, 187, 28, 424, 6, 11, 154, 0, 77140, 2478, 10, 0
OFFSET
1,10
COMMENTS
a(A216183(n)) = 0. - Reinhard Zumkeller, Mar 11 2013
LINKS
EXAMPLE
14/1 -> 14/5 -> 70/9 -> 630/15 = 42 so a(14)=42.
57/1 -> 19/4 -> 76/13 -> 247/4 -> 247/4 -> ... so a(57) = 0.
PROG
(Haskell)
import Data.Ratio ((%), numerator, denominator)
a059514 n = f [n % 1] where
f xs@(x:_)
| denominator y == 1 = numerator y
| y `elem` xs = 0
| otherwise = f (y : xs)
where y = (numerator x * denominator x) %
(a007953 (numerator x) + a007953 (denominator x) - 1)
-- Reinhard Zumkeller, Mar 11 2013
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Floor van Lamoen, Jan 22 2001
EXTENSIONS
Corrected and extended by Naohiro Nomoto, Jul 20 2001
STATUS
approved