OFFSET
0,5
COMMENTS
Row A264856(n) contains the first occurrence of n, n > 0. - Reinhard Zumkeller, Nov 26 2015
LINKS
T. D. Noe, Rows n=0..100, flattened
PROG
(Haskell)
a125605 n k = a125605_tabl !! n !! k
a125605_row n = a125605_tabl !! n
a125605_tabl = iterate f [1] where
f xs = zipWith (\v w -> (v + w) `div` gcd v w) ([0] ++ xs) (xs ++ [0])
-- Reinhard Zumkeller, Nov 26 2015
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Franklin T. Adams-Watters, Nov 27 2006
STATUS
approved