The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A274284 Numbers that are a product of distinct numbers in A006355. 2
2, 4, 6, 8, 10, 12, 16, 20, 24, 26, 32, 40, 42, 48, 52, 60, 64, 68, 80, 84, 96, 104, 110, 120, 128, 136, 156, 160, 168, 178, 192, 208, 220, 240, 252, 260, 272, 288, 312, 320, 336, 356, 384, 408, 416, 420, 440, 466, 480, 504, 520, 544, 576, 624, 640, 660, 672 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See the Comment on distinct-product sequences in A160009.
LINKS
EXAMPLE
8 = 2*4, 480 = 2*4*6*10.
MATHEMATICA
f[1] = 2; f[2] = 4; z = 32; f[n_] := f[n - 1] + f[n - 2]; f = Table[f[n], {n, 1, z}]; f
s = {2}; Do[s = Union[s, Select[s*f[[i]], # <= f[[z]] &]], {i, z}]; s
CROSSREFS
Cf. A160009.
Sequence in context: A085154 A371286 A331079 * A112421 A320674 A022483
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 June 11 05:33 EDT 2024. Contains 373289 sequences. (Running on oeis4.)