This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A079854 #12 Oct 01 2020 12:56:25 %S A079854 1,1,2,6,24,120,840,6720,60480,604800,6652800,86486400,1210809600, %T A079854 18162144000,308756448000,4940103168000,88921857024000, %U A079854 1689515283456000,35479820952576000,780556060956672000,17952789402003456000 %N A079854 a(1) = 1, a(k) divides a(k+r) for all k and r and the ratios a(k+r)/a(k) are all different. %e A079854 a(7) != 120*1, 120*2, ..., 120*6 as the ratios 1,2,3,...,6 appeared as 1/1, 2/1, 6/2, 24/6, 120/24, 6/1. So a(7) = 7*120 = 840. %t A079854 f[l_List] := Block[{n = Length[l], w, k = 1, r = l[[ -1]]/l},w = Flatten[Table[Take[l, i - n]/l[[i]], {i, n}]];While[Intersection[w, k*r] != {}, k++ ];Append[l, k*l[[ -1]]]];Nest[f, {1}, 21] (* _Ray Chandler_, Feb 08 2007 *) %Y A079854 Cf. A000045, A066720, A079852, A036241. %K A079854 nonn %O A079854 1,3 %A A079854 _Amarnath Murthy_, Feb 19 2003 %E A079854 Corrected and extended by Fung Cheok Yin (cheokyin_restart(AT)yahoo.com.hk), Sep 30 2006 %E A079854 Edited and further extended by _Ray Chandler_, Feb 08 2007