cp's OEIS Frontend

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.

A274283 Numbers that are a product of distinct numbers in A022095.

Original entry on oeis.org

1, 5, 6, 11, 17, 28, 30, 45, 55, 66, 73, 85, 102, 118, 140, 168, 187, 191, 225, 270, 308, 309, 330, 365, 438, 476, 495, 500, 510, 590, 708, 765, 803, 809, 840, 935, 955, 1122, 1146, 1241, 1260, 1298, 1309, 1350, 1540, 1545, 1848, 1854, 2006, 2044, 2101, 2118
Offset: 1

Views

Author

Clark Kimberling, Jun 17 2016

Keywords

Comments

See the Comment on distinct-product sequences in A160009.

Examples

			30 = 5*6, 330 = 5*6*11.
		

Crossrefs

Cf. A160009.

Programs

  • Mathematica
    f[1] = 1; f[2] = 5; z = 32; 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}]; s