OFFSET
1,1
COMMENTS
Starting from 3, include only those numbers that aren't the product of two numbers already included.
Numbers >3 not included: 9,12,15,18,21,24,30,33,39,42,51,57,66,69,78,....
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..1000
EXAMPLE
9 is excluded because 9=3*3. 10 is included because 10 is not the product of any two of 3,4,5,6,7,8.
MATHEMATICA
f[s_List] := Block[{k = s[[ -1]] + 1, ss = Times @@@ Tuples[s, 2]}, While[MemberQ[ss, k], k++ ]; Append[s, k]]; Nest[f, {3}, 65] (* Robert G. Wilson v Sep 23 2006 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Sep 14 2008 at the suggestion of R. J. Mathar
STATUS
approved