login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A274286 Numbers that are a product of distinct numbers in row 2 of the Wythoff array, A035513. 3
4, 7, 11, 18, 28, 29, 44, 47, 72, 76, 77, 116, 123, 126, 188, 198, 199, 203, 304, 308, 319, 322, 329, 492, 504, 517, 521, 522, 532, 792, 796, 812, 836, 843, 846, 861, 1276, 1288, 1316, 1353, 1363, 1364, 1368, 1386, 1393, 2068, 2084, 2088, 2128, 2189, 2204 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See the Comment on distinct-product sequences in A160009.
LINKS
EXAMPLE
28 = 4*7, 308 = 4*7*11.
MATHEMATICA
f[1] = 4; f[2] = 7; z = 33; f[n_] := f[n - 1] + f[n - 2]; f = Table[f[n], {n, 1, z}]; f
s = {1}; Do[s = Union[s, Select[s*f[[i]], # <= f[[z]] &]], {i, z}]; s1 = Rest[s]
CROSSREFS
Sequence in context: A207871 A023666 A023502 * A024882 A296551 A087203
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 17 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)