|
| |
|
|
A079851
|
|
a(1) = 1, a(2) = 2 and a(n) is the smallest number such that all a(i)*a(j) are different.
|
|
3
| |
|
|
1, 2, 3, 4, 5, 7, 9, 11, 13, 16, 17, 19, 23, 25, 29, 30, 31, 37, 41, 43, 47, 49, 53, 59, 61, 67, 71, 73, 79, 81, 83, 84, 89, 97, 101, 103, 107, 109, 113, 121, 127, 128, 131, 137, 139, 149, 151, 154, 157, 163, 167, 169, 173, 179, 180, 181, 191, 193, 197, 199, 211, 223
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Taking a(n) as the smallest number such that a(i)+a(j) are all different gives the Fibonacci sequence (A000045) from third term onwards.
|
|
|
EXAMPLE
| After 5, 7 is the next member and not 6 as 6*1 = 2*3.
|
|
|
MATHEMATICA
| f[l_List] := Block[{k = 1, p = Times @@@ Subsets[l, {2}]}, While[Intersection[p, l*k] != {}, k++ ]; Append[l, k]]; Nest[f, {1, 2}, 62] (*Chandler*)
|
|
|
CROSSREFS
| Cf. A000045, A079850, A079852, compare to A066724.
Sequence in context: A026416 A123193 A066724 * A089237 A009087 A026477
Adjacent sequences: A079848 A079849 A079850 * A079852 A079853 A079854
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Feb 19 2003
|
|
|
EXTENSIONS
| Corrected and extended by Ray Chandler (rayjchandler(AT)sbcglobal.net), Feb 12 2007
|
| |
|
|